Skip to content

Commit

Permalink
Merge pull request #1097 from thewtex/create-itk-wasm-deps-bump
Browse files Browse the repository at this point in the history
Create itk wasm deps bump
  • Loading branch information
thewtex authored Mar 12, 2024
2 parents 541c544 + 8e666e4 commit afd70ff
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/core/typescript/create-itk-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-itk-wasm",
"version": "1.0.4",
"version": "1.0.5",
"description": "CLI to create a new ITK-Wasm project or add a pipeline to an existing project.",
"type": "module",
"exports": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function generatePackageJson(project: ProjectSpec) {
devDependencies: {
'@itk-wasm/dam': '^1.1.1',
'@thewtex/setup-micromamba': '^1.9.7',
'itk-wasm': '1.0.0-b.169'
'itk-wasm': '1.0.0-b.171'
}
}
if (project.author) {
Expand Down
12 changes: 12 additions & 0 deletions packages/core/typescript/create-itk-wasm/src/generate/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ function generateProject(

if (verbose) {
console.log(chalk.cyanBright('💖 Finished.'))
console.log(
`${chalk.cyanBright('\n📂 Directory: ')} ${project.directory}`
)
console.log(`${chalk.cyanBright('📦 Name: ')} ${project.name}`)
console.log(
`${chalk.cyanBright('📄 Description: ')} ${project.packageDescription}`
)
console.log(chalk.magentaBright(`\n🚀 Next steps:`))
console.log(chalk.green(`\ncd ${project.directory}`))
console.log(chalk.green(`pnpm install`))
console.log(chalk.green(`pnpm build`))
console.log(chalk.green(`pnpm test\n`))
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/core/typescript/itk-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itk-wasm",
"version": "1.0.0-b.170",
"version": "1.0.0-b.171",
"packageManager": "pnpm@8.11.0",
"description": "High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"itk-wasm": "1.0.0-b.165"
"itk-wasm": "1.0.0-b.170"
},
"devDependencies": {
"@itk-wasm/image-io": "^1.1.0",
"@itk-wasm/mesh-io": "^1.1.0",
"@itk-wasm/image-io": "^1.1.1",
"@itk-wasm/mesh-io": "^1.1.1",
"@shoelace-style/shoelace": "^2.12.0",
"@types/node": "^20.2.5",
"esbuild": "^0.19.8",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/typescript/itk-wasm/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const version = '1.0.0-b.167'
const version = "1.0.0-b.171";

export default version

0 comments on commit afd70ff

Please sign in to comment.