Skip to content

Commit

Permalink
chore: Updated scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Aug 13, 2024
1 parent 4d48d88 commit 80558c9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions docs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
"scripts": {
"build": "ember build --environment=production",
"build:test": "ember build --environment=test",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:css": "stylelint \"app/**/*.css\" --cache",
"lint:css:fix": "stylelint \"app/**/*.css\" --fix",
"lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'",
"lint:css": "stylelint 'app/**/*.css' --cache",
"lint:css:fix": "stylelint 'app/**/*.css' --fix",
"lint:dependency": "ember dependency-lint",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"author": "Isaac J. Lee",
"type": "module",
"scripts": {
"build": "concurrently \"npm:build:*\"",
"build": "concurrently 'pnpm:build:*'",
"build:addon": "pnpm --filter ember-container-query build",
"build:docs-app": "pnpm --filter docs-app build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm build:addon",
"release:changelog": "lerna-changelog",
"release:publish": "pnpm --recursive publish",
"start": "concurrently \"npm:start:*\" --restart-after 5000 --prefix-colors cyan,white,yellow",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm --filter ember-container-query start",
"start:docs-app": "pnpm --filter docs-app start",
"start:test-app": "pnpm --filter test-app start",
Expand Down
8 changes: 4 additions & 4 deletions packages/ember-container-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@
"dist"
],
"scripts": {
"build": "concurrently \"npm:build:*\" --names \"build:\"",
"build": "concurrently 'pnpm:build:*' --names 'build:'",
"build:js": "rollup --config",
"build:types": "glint --declaration",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "glint",
"prepack": "rollup --config",
"start": "concurrently \"npm:start:*\" --names \"start:\"",
"start": "concurrently 'pnpm:start:*' --names 'start:'",
"start:js": "rollup --config --watch --no-watch.clearScreen",
"start:types": "glint --declaration --watch",
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
Expand Down
4 changes: 2 additions & 2 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"scripts": {
"build": "ember build --environment=production",
"build:test": "ember build --environment=test",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'",
"lint:dependency": "ember dependency-lint",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
Expand Down

0 comments on commit 80558c9

Please sign in to comment.