Skip to content

Commit

Permalink
Updated README and dependencies in blueprints
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Sep 9, 2024
1 parent 91fe743 commit 16b2ad4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blueprints-v2-addon",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"description": "Blueprints for v2 addons",
"keywords": [
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions src/blueprints/run-new/__addonLocation__/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ pnpm start

<details>

<summary>Create entity</summary>
<summary>Create files</summary>

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 <component|helper|modifier|service|util> <name> [options]
Expand All @@ -49,9 +49,9 @@ For more information, pass `--help`.

<details>

<summary>Remove entity</summary>
<summary>Remove files</summary>

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 <component|helper|modifier|service|util> <name>
Expand Down
6 changes: 3 additions & 3 deletions src/blueprints/run-new/__addonLocation__/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions tests/fixtures/run-new/output/packages/ui/form/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ pnpm start

<details>

<summary>Create entity</summary>
<summary>Create files</summary>

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 <component|helper|modifier|service|util> <name> [options]
Expand All @@ -49,9 +49,9 @@ For more information, pass `--help`.

<details>

<summary>Remove entity</summary>
<summary>Remove files</summary>

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 <component|helper|modifier|service|util> <name>
Expand Down
6 changes: 3 additions & 3 deletions tests/fixtures/run-new/output/packages/ui/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion update-blueprints.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 16b2ad4

Please sign in to comment.