Skip to content

Commit 6dd8fe8

Browse files
committed
docs(create-itk-wasm): document driving with pixi
1 parent 87bbb4c commit 6dd8fe8

2 files changed

Lines changed: 13 additions & 9 deletions

File tree

packages/core/typescript/create-itk-wasm/README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ CLI to create a new [ITK-Wasm](https://wasm.itk.org) project or add a pipeline t
1010
npm 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+
1319
Then,
1420

1521
```sh
@@ -19,16 +25,15 @@ cd my-project
1925
pnpm 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

3439
For more information, see the [ITK-Wasm documentation](https://wasm.itk.org).

packages/core/typescript/create-itk-wasm/src/generate/project.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)