File tree Expand file tree Collapse file tree
packages/core/typescript/create-itk-wasm Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ CLI to create a new [ITK-Wasm](https://wasm.itk.org) project or add a pipeline t
1010npm install -g pnpm
1111```
1212
13+ and [ pixi] ( https://pixi.sh/latest/ ) , e.g.
14+
15+ ``` sh
16+ curl -fsSL https://pixi.sh/install.sh | bash
17+ ```
18+
1319Then,
1420
1521``` sh
@@ -19,16 +25,15 @@ cd my-project
1925pnpm create itk-wasm
2026# Answers the questions
2127
22- pnpm install
23- pnpm build
24- pnpm test
28+ pixi run build
29+ pixi run test
2530
2631# Add your C++ logic code to the *.cxx files
27- pnpm build
28- pnpm test
32+ pixi run build
33+ pixi run test
2934
3035# For more granular targets, see the output of
31- pnpm run
36+ pixi task list
3237```
3338
3439For more information, see the [ ITK-Wasm documentation] ( https://wasm.itk.org ) .
Original file line number Diff line number Diff line change @@ -64,9 +64,8 @@ function generateProject(
6464 )
6565 console . log ( chalk . magentaBright ( `\n🚀 Next steps:` ) )
6666 console . log ( chalk . green ( `\ncd ${ project . directory } ` ) )
67- console . log ( chalk . green ( `pnpm install` ) )
68- console . log ( chalk . green ( `pnpm build` ) )
69- console . log ( chalk . green ( `pnpm test\n` ) )
67+ console . log ( chalk . green ( `pixi run build` ) )
68+ console . log ( chalk . green ( `pixi run test\n` ) )
7069 }
7170}
7271
You can’t perform that action at this time.
0 commit comments