diff --git a/package.json b/package.json index b397999..1c05b22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "blueprints-v2-addon", - "version": "0.1.4", + "version": "0.1.5", "private": true, "description": "Blueprints for v2 addons", "keywords": [ @@ -48,9 +48,9 @@ "@shared-configs/prettier": "workspace:*", "@shared-configs/typescript": "workspace:*", "@sondr3/minitest": "^0.1.2", - "@types/node": "^18.19.48", + "@types/node": "^18.19.50", "@types/yargs": "^17.0.33", - "concurrently": "^8.2.2", + "concurrently": "^9.0.0", "eslint": "^8.57.0", "git-diff-apply": "^6.0.5", "prettier": "^3.3.3", diff --git a/src/blueprints/run-new/__addonLocation__/README.md b/src/blueprints/run-new/__addonLocation__/README.md index db88399..2d15807 100644 --- a/src/blueprints/run-new/__addonLocation__/README.md +++ b/src/blueprints/run-new/__addonLocation__/README.md @@ -22,9 +22,9 @@ pnpm start
-Create entity +Create files -From the addon root, run the `generate` command to create the source code and its test file. +Run the `generate` command (from anywhere inside the addon) to create the source code and its test file. ```sh pnpm addon generate [options] @@ -49,9 +49,9 @@ For more information, pass `--help`.
-Remove entity +Remove files -From the addon root, run the `destroy` command to remove the source code and its test file. +Run the `destroy` command (from anywhere inside the addon) to remove the source code and its test file. ```sh pnpm addon destroy diff --git a/src/blueprints/run-new/__addonLocation__/package.json b/src/blueprints/run-new/__addonLocation__/package.json index 8d05c15..0bec1ae 100644 --- a/src/blueprints/run-new/__addonLocation__/package.json +++ b/src/blueprints/run-new/__addonLocation__/package.json @@ -59,7 +59,7 @@ "dependencies": { "@embroider/addon-shim": "^1.8.9", "decorator-transforms": "^2.0.0", - "embroider-css-modules": "^2.0.10" + "embroider-css-modules": "^2.0.11" }, "devDependencies": { "@babel/core": "^7.25.2", @@ -80,12 +80,12 @@ "@shared-configs/typescript": "workspace:*", "babel-plugin-ember-template-compilation": "^2.2.5", "blueprints-v2-addon": "workspace:*", - "concurrently": "^8.2.2", + "concurrently": "^9.0.0", "ember-modifier": "^4.2.0", "ember-source": "~5.11.0", "ember-template-lint": "^6.0.0", "eslint": "^8.57.0", - "postcss": "^8.4.44", + "postcss": "^8.4.45", "prettier": "^3.3.3", "rollup": "^4.21.2", "rollup-plugin-postcss": "^4.0.2", diff --git a/tests/fixtures/run-new/output/packages/ui/form/README.md b/tests/fixtures/run-new/output/packages/ui/form/README.md index 10abef2..a1debe9 100644 --- a/tests/fixtures/run-new/output/packages/ui/form/README.md +++ b/tests/fixtures/run-new/output/packages/ui/form/README.md @@ -22,9 +22,9 @@ pnpm start
-Create entity +Create files -From the addon root, run the `generate` command to create the source code and its test file. +Run the `generate` command (from anywhere inside the addon) to create the source code and its test file. ```sh pnpm addon generate [options] @@ -49,9 +49,9 @@ For more information, pass `--help`.
-Remove entity +Remove files -From the addon root, run the `destroy` command to remove the source code and its test file. +Run the `destroy` command (from anywhere inside the addon) to remove the source code and its test file. ```sh pnpm addon destroy diff --git a/tests/fixtures/run-new/output/packages/ui/form/package.json b/tests/fixtures/run-new/output/packages/ui/form/package.json index 3c48dd3..dd2d960 100644 --- a/tests/fixtures/run-new/output/packages/ui/form/package.json +++ b/tests/fixtures/run-new/output/packages/ui/form/package.json @@ -59,7 +59,7 @@ "dependencies": { "@embroider/addon-shim": "^1.8.9", "decorator-transforms": "^2.0.0", - "embroider-css-modules": "^2.0.10" + "embroider-css-modules": "^2.0.11" }, "devDependencies": { "@babel/core": "^7.25.2", @@ -80,12 +80,12 @@ "@shared-configs/typescript": "workspace:*", "babel-plugin-ember-template-compilation": "^2.2.5", "blueprints-v2-addon": "workspace:*", - "concurrently": "^8.2.2", + "concurrently": "^9.0.0", "ember-modifier": "^4.2.0", "ember-source": "~5.11.0", "ember-template-lint": "^6.0.0", "eslint": "^8.57.0", - "postcss": "^8.4.44", + "postcss": "^8.4.45", "prettier": "^3.3.3", "rollup": "^4.21.2", "rollup-plugin-postcss": "^4.0.2", diff --git a/update-blueprints.js b/update-blueprints.js index 6a0cbba..5f6adf4 100755 --- a/update-blueprints.js +++ b/update-blueprints.js @@ -5,7 +5,7 @@ import gitDiffApply from 'git-diff-apply'; import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; -const CURRENT_VERSION = '0.1.4'; +const CURRENT_VERSION = '0.1.5'; async function updateBlueprints({ from, to }) { const startTag = from;