Skip to content

Commit afd70ff

Browse files
authored
Merge pull request #1097 from thewtex/create-itk-wasm-deps-bump
Create itk wasm deps bump
2 parents 541c544 + 8e666e4 commit afd70ff

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-itk-wasm",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "CLI to create a new ITK-Wasm project or add a pipeline to an existing project.",
55
"type": "module",
66
"exports": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function generatePackageJson(project: ProjectSpec) {
5959
devDependencies: {
6060
'@itk-wasm/dam': '^1.1.1',
6161
'@thewtex/setup-micromamba': '^1.9.7',
62-
'itk-wasm': '1.0.0-b.169'
62+
'itk-wasm': '1.0.0-b.171'
6363
}
6464
}
6565
if (project.author) {

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,18 @@ function generateProject(
5353

5454
if (verbose) {
5555
console.log(chalk.cyanBright('💖 Finished.'))
56+
console.log(
57+
`${chalk.cyanBright('\n📂 Directory: ')} ${project.directory}`
58+
)
59+
console.log(`${chalk.cyanBright('📦 Name: ')} ${project.name}`)
60+
console.log(
61+
`${chalk.cyanBright('📄 Description: ')} ${project.packageDescription}`
62+
)
63+
console.log(chalk.magentaBright(`\n🚀 Next steps:`))
64+
console.log(chalk.green(`\ncd ${project.directory}`))
65+
console.log(chalk.green(`pnpm install`))
66+
console.log(chalk.green(`pnpm build`))
67+
console.log(chalk.green(`pnpm test\n`))
5668
}
5769
}
5870

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "itk-wasm",
3-
"version": "1.0.0-b.170",
3+
"version": "1.0.0-b.171",
44
"packageManager": "pnpm@8.11.0",
55
"description": "High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.",
66
"type": "module",

packages/core/typescript/itk-wasm/src/bindgen/typescript/resources/template.package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
"author": "",
3535
"license": "Apache-2.0",
3636
"dependencies": {
37-
"itk-wasm": "1.0.0-b.165"
37+
"itk-wasm": "1.0.0-b.170"
3838
},
3939
"devDependencies": {
40-
"@itk-wasm/image-io": "^1.1.0",
41-
"@itk-wasm/mesh-io": "^1.1.0",
40+
"@itk-wasm/image-io": "^1.1.1",
41+
"@itk-wasm/mesh-io": "^1.1.1",
4242
"@shoelace-style/shoelace": "^2.12.0",
4343
"@types/node": "^20.2.5",
4444
"esbuild": "^0.19.8",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const version = '1.0.0-b.167'
1+
const version = "1.0.0-b.171";
22

33
export default version

0 commit comments

Comments
 (0)