Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(mean-squares-versor-registration): Add bindgen command #799

Merged
merged 2 commits into from Mar 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions examples/mean-squares-versor-registration/package.json
Expand Up @@ -4,10 +4,11 @@
"description": "Illustrate the use of the VersorRigid3DTransform for 3D image registration.",
"type": "module",
"scripts": {
"build": "npm run build:wasi && npm run build:emscripten",
"build": "npm run build:wasi && npm run build:emscripten && npm run build:bindgen:typescript",
"build:wasi": "itk-wasm -i itkwasm/wasi:latest build",
"build:wasi:debug": "itk-wasm -i itkwasm/wasi:latest-debug build -- -DCMAKE_BUILD_TYPE=Debug",
"build:emscripten": "itk-wasm -i itkwasm/emscripten:latest build",
"build:bindgen:typescript": "itk-wasm bindgen --package-name @itk-wasm/mean-squares-versor-registration --package-description \"Example 3D versor transform registration with a mean-squares similarity metric\"",
"test": "npm run test:wasi && npm run test:wasi:help && npm run test:emscripten",
"test:wasi": "itk-wasm test -- -- -V",
"test:wasi:help": "itk-wasm run mean-squares-versor-registration.wasi.wasm -- -- --help"
Expand All @@ -16,7 +17,7 @@
"license": "Apache-2.0",
"dependencies": {
"fs-extra": "^10.0.0",
"itk-image-io": "^1.0.0-b.83",
"itk-wasm": "^1.0.0-b.83"
"itk-image-io": "^1.0.0-b.89",
"itk-wasm": "^1.0.0-b.89"
}
}