Skip to content

Commit a8196e8

Browse files
committed
build: revert workaround for symlink resolution
Now resolved by the parent commit.
1 parent 539f783 commit a8196e8

6 files changed

Lines changed: 85 additions & 19 deletions

File tree

.npmrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

packages/compress-stringify/typescript/vite.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ export default defineConfig({
3131
{ src: '../../../node_modules/@itk-wasm/compare-images/dist/pipelines/*.{js,wasm,wasm.zst}', dest: 'pipelines' },
3232
{ src: '../../../node_modules/@itk-wasm/compare-meshes/dist/pipelines/*.{js,wasm,wasm.zst}', dest: 'pipelines' },
3333
{ src: '../../../node_modules/@itk-wasm/mesh-to-poly-data/dist/pipelines/*.{js,wasm,wasm.zst}', dest: 'pipelines' },
34-
// Also check root node_modules for hoisted external deps (pnpm node-linker=hoisted)
35-
{ src: '../../../../../../node_modules/@itk-wasm/mesh-to-poly-data/dist/pipelines/*.{js,wasm,wasm.zst}', dest: 'pipelines' },
3634
],
3735
})
3836
],

packages/core/typescript/itk-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"build:workerBundle": "esbuild --bundle --format=esm --outfile=./dist/pipeline/web-workers/bundles/itk-wasm-pipeline.worker.js ./dist/pipeline/web-workers/itk-wasm-pipeline.worker.js",
2828
"build:workerBundleForTesting": "esbuild --bundle --format=esm --outfile=./test/pipelines/typescript/test/browser/demo-app/public/itk-wasm-pipeline.worker.js ./dist/pipeline/web-workers/itk-wasm-pipeline.worker.js && shx cp -r ./test/data/ ./test/pipelines/typescript/test/browser/demo-app/public/",
2929
"build:workerMinBundle": "esbuild --minify --bundle --format=esm --outfile=./dist/pipeline/web-workers/bundles/itk-wasm-pipeline.min.worker.js ./dist/pipeline/web-workers/itk-wasm-pipeline.worker.js",
30-
"start": "pnpm build:workerBundleForTesting && cd test/pipelines/typescript && pnpm install --no-frozen-lockfile && pnpm build && pnpm start",
30+
"start": "pnpm build:workerBundleForTesting && cd test/pipelines/typescript && pnpm build && pnpm start",
3131
"test:wasi": "pnpm test:buildTestPipelines:wasi && pnpm test:runTestPipelines && pnpm test:bindgenTestPipelines:python",
3232
"test": "pnpm test:lint && pnpm test:testPipelines && pnpm test:node && pnpm test:bindgenTestPipelines:python && pnpm test:browser",
3333
"test:lint": "ts-standard --fix \"src/**/*.ts\" && standard --fix \"test/node/**/*.js\"",

packages/core/typescript/itk-wasm/test/pipelines/typescript/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@
3333
"author": "",
3434
"license": "Apache-2.0",
3535
"dependencies": {
36-
"itk-wasm": "link:../../.."
36+
"itk-wasm": "workspace:*"
3737
},
3838
"devDependencies": {
39-
"@itk-wasm/demo-app": "link:../../../../demo-app",
40-
"@itk-wasm/image-io": "link:../../../../../../image-io/typescript",
41-
"@itk-wasm/mesh-io": "link:../../../../../../mesh-io/typescript",
42-
"@itk-wasm/transform-io": "link:../../../../../../transform-io/typescript",
39+
"@itk-wasm/demo-app": "workspace:*",
40+
"@itk-wasm/image-io": "workspace:*",
41+
"@itk-wasm/mesh-io": "workspace:*",
42+
"@itk-wasm/transform-io": "workspace:*",
4343
"@types/node": "^20.2.5",
4444
"esbuild": "^0.25.0",
4545
"shx": "^0.3.4",
4646
"typescript": "^5.3.2",
4747
"vite": "^6.4.1",
4848
"vite-plugin-cross-origin-isolation": "^0.1.6",
49-
"vite-plugin-static-copy": "^2.3.2"
49+
"vite-plugin-static-copy": "^0.17.0"
5050
}
5151
}

pnpm-lock.yaml

Lines changed: 78 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ packages:
99
- 'examples/mean-squares-versor-registration'
1010
- 'examples/mean-squares-versor-registration/typescript'
1111
- '!packages/core/typescript/create-itk-wasm/test/**'
12-
- '!packages/core/typescript/itk-wasm/test/**'
1312
- '!**/src'
1413
- '!**/dist'
1514
- '!**/pyodide'

0 commit comments

Comments
 (0)