Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demos/gallery/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"clean": "rimraf --glob types dist *.tsbuildinfo",
"bundle": "vite build",
"bundle-watch": "vite --port 5500",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"gen-filejson": "node ./util/dir2json.js ./samples",
"build": "npm-run-all --serial gen-filejson --parallel gen-types bundle gen-filejson",
Expand Down
142 changes: 142 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"@eslint/js": "10.0.1",
"@types/esbuild-copy-static-files": "0.1.4",
"@typescript-eslint/parser": "8.60.0",
"@typescript/native-preview": "7.0.0-dev.20260527.2",
"@vitest/browser": "4.1.7",
"@vitest/browser-playwright": "4.1.7",
"@vitest/coverage-v8": "4.1.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/chart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5500",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5501",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5502",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/comms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"bundle": "run-s bundle-browser bundle-node",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/composite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5503",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
4 changes: 2 additions & 2 deletions packages/dataflow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand All @@ -34,7 +34,7 @@
"docs": "typedoc --options tdoptions.json .",
"test-browser": "vitest run --project browser",
"test-node": "vitest run --project node",
"test-types": "npx --yes tsc --project tsconfig.tests.json --noEmit",
"test-types": "npx --yes tsgo --project tsconfig.tests.json --noEmit",
"test-vitest": "vitest run",
"test": "run-s test-types test-vitest",
"bench": "vitest bench",
Expand Down
2 changes: 1 addition & 1 deletion packages/ddl-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "npm-run-all --serial generate --parallel gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/dgrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5506",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/dgrid2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5507",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/eclwatch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5520",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
4 changes: 2 additions & 2 deletions packages/esbuild-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"scripts": {
"clean": "rimraf ./dist ./types",
"build-types": "tsc --project tsconfig.json --emitDeclarationOnly",
"build-types": "tsgo --project tsconfig.json --emitDeclarationOnly",
"build-types-watch": "npm run build-types -- --watch",
"build-ts-dev": "esbuild ./src/index.ts --platform=node --format=esm --bundle --packages=external --sourcemap --outfile=./dist/index.js",
"build-ts": "npm run build-ts-dev -- --minify",
Expand Down Expand Up @@ -65,4 +65,4 @@
},
"homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
"license": "Apache-2.0"
}
}
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5508",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/graph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"bundle-workers": "vite build -c ./workers/vite.config.ts",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5509",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5510",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/layout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5511",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/map/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5512",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/markdown-it-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"bundle-serve": "vite --port 5513",
"bundle2": "node esbuild.js",
"bundle2-watch": "npm run bundle2 -- --development --watch",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "npm-run-all --parallel gen-types bundle --serial bundle2",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/marshaller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5520",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/observablehq-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5514",
"bundle-preview": "vite preview --outDir /",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/other/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5515",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/phosphor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5516",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"bundle": "vite build",
"bundle-watch": "vite build --watch",
"bundle-serve": "vite --port 5517",
"gen-types": "tsc --project tsconfig.json",
"gen-types": "tsgo --project tsconfig.json",
"gen-types-watch": "npm run gen-types -- --watch",
"build": "run-p gen-types bundle",
"watch": "run-p gen-types-watch bundle-watch",
Expand Down
Loading
Loading