Skip to content

Commit

Permalink
Use concurrently
Browse files Browse the repository at this point in the history
  • Loading branch information
cloke committed Nov 21, 2024
1 parent 032d5fc commit c338dda
Show file tree
Hide file tree
Showing 2 changed files with 9,393 additions and 7,490 deletions.
23 changes: 11 additions & 12 deletions ember-apache-echarts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,23 @@
}
},
"scripts": {
"build": "npm-run-all build:*",
"build": "concurrently 'npm:build:*'",
"build:js": "rollup --config",
"build:types": "echo 'skip types build'",
"build:glint": "glint --build",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
"build:types": "glint --declaration",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:prettier": "prettier ./src -c --plugin prettier-plugin-ember-template-tag",
"lint:prettier:fix": "prettier --write ./src --plugin prettier-plugin-ember-template-tag",
"lint:prettier": "prettier -c .",
"lint:prettier:fix": "prettier -w .",
"lint:types": "glint",
"start": "npm-run-all start:*",
"prepack": "rollup --config",
"start": "concurrently 'npm: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'",
"prepack": "rollup --config"
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
},
"dependencies": {
"@ember/render-modifiers": "^2.1.0",
Expand Down Expand Up @@ -87,6 +86,7 @@
"@typescript-eslint/parser": "^7.18.0",
"babel-eslint": "10.1.0",
"babel-plugin-ember-template-compilation": "^2.3.0",
"concurrently": "^9.0.1",
"decorator-transforms": "^2.0.0",
"ember-template-lint": "5.13.0",
"eslint": "8.57.0",
Expand All @@ -96,7 +96,6 @@
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-qunit": "8.1.2",
"npm-run-all": "4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-ember-template-tag": "^2.0.2",
"rollup": "4.21.3",
Expand Down
Loading

0 comments on commit c338dda

Please sign in to comment.