Skip to content

Commit

Permalink
ENH: Update package.json configuration to use itk-wasm pnpm-script
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Feb 2, 2024
1 parent e860aad commit 5d88356
Show file tree
Hide file tree
Showing 9 changed files with 3,091 additions and 22 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ node_modules/
emscripten-build/
wasi-build/

package-lock.json
pnpm-lock.yaml
micromamba/

wasm/python/

test/pyodide-emscripten.tar.bz2
10 changes: 10 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: mesh-to-poly-data
channels:
- conda-forge
dependencies:
- pytest
- python=3.11
- pip
- pip:
- hatch
- itkwasm-mesh-io
45 changes: 38 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,49 @@
{
"name": "wasm",
"name": "@itk-wasm/mesh-to-poly-data-build",
"version": "1.0.0",
"description": "npm scripts to generate itk-wasm artifacts.",
"private": true,
"type": "module",
"itk-wasm": {
"emscripten-docker-image": "itkwasm/emscripten:20231217-40780708",
"wasi-docker-image": "itkwasm/wasi:20231217-40780708",
"typescript-package-name": "@itk-wasm/mesh-to-poly-data",
"typescript-output-dir": "wasm/typescript",
"python-package-name": "itkwasm-mesh-to-poly-data",
"python-output-dir": "wasm/python",
"package-description": "Convert an ITK Mesh to a simple data structure compatible with vtkPolyData.",
"repository": "https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData"
},
"scripts": {
"build": "npm run emscripten && npm run bindgen:typescript && npm run wasi && npm run bindgen:python",
"emscripten": "npx itk-wasm -b emscripten-build build",
"bindgen:typescript": "npx itk-wasm -b emscripten-build bindgen --output-dir wasm/typescript --package-name @itk-wasm/mesh-to-poly-data --package-version 0.1.0 --package-description \"Convert an ITK Mesh to a simple data structure compatible with vtkPolyData.\" --repository 'https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData'",
"bindgen:python": "npx itk-wasm -b wasi-build bindgen --interface python --output-dir wasm/python --package-name itkwasm-mesh-to-poly-data --package-version 0.1.0 --package-description \"Convert an ITK Mesh to a simple data structure compatible with vtkPolyData.\" --repository 'https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData'",
"wasi": "npx itk-wasm -b wasi-build -i itkwasm/wasi build",
"build": "pnpm build:gen:typescript && pnpm -r build && pnpm build:gen:python",
"build:emscripten": "itk-wasm pnpm-script build:emscripten",
"build:emscripten:debug": "itk-wasm pnpm-script build:emscripten:debug",
"build:wasi": "itk-wasm pnpm-script build:wasi",
"build:wasi:debug": "itk-wasm pnpm-script build:wasi:debug",
"build:python:wasi": "itk-wasm pnpm-script build:python:wasi",
"bindgen:typescript": "itk-wasm pnpm-script bindgen:typescript",
"bindgen:python": "itk-wasm pnpm-script bindgen:python",
"build:gen:typescript": "itk-wasm pnpm-script build:gen:typescript",
"build:gen:python": "itk-wasm pnpm-script build:gen:python",
"build:micromamba": "itk-wasm pnpm-script build:micromamba",
"build:python:versionSync": "itk-wasm pnpm-script build:python:versionSync",
"publish:python": "itk-wasm pnpm-script publish:python",
"test": "pnpm test:data:download && pnpm -r test && pnpm test:python",
"test:data:download": "echo \"not needed\"",
"test:data:pack": "dam pack test/data test/data.tar.gz",
"test:python:wasi": "itk-wasm pnpm-script test:python:wasi",
"test:pyodide:download:emscripten": "itk-wasm pnpm-script test:pyodide:download:emscripten",
"test:python:emscripten": "itk-wasm pnpm-script test:python:emscripten",
"test:pyodide:download:dispatch": "itk-wasm pnpm-script test:pyodide:download:dispatch",
"test:python:dispatch": "itk-wasm pnpm-script test:python:emscripten",
"test:python": "itk-wasm pnpm-script test:python",
"test:wasi": "itk-wasm pnpm-script test:wasi -- -V",
"clean": "git clean -fdx -e node_modules"
},
"license": "Apache-2.0",
"devDependencies": {
"itk-wasm": "^1.0.0-b.157"
"@itk-wasm/dam": "^1.1.0",
"@thewtex/setup-micromamba": "^1.9.7",
"itk-wasm": "^1.0.0-b.164"
}
}
Loading

0 comments on commit 5d88356

Please sign in to comment.