ui: match eslint script with ember-new-output

This commit is contained in:
Jai Bhagat
2021-12-28 09:40:00 -05:00
parent 3c78be7fba
commit ba92ba367d

View File

@@ -10,9 +10,12 @@
"scripts": {
"build": "ember build --environment=production",
"precommit": "lint-staged",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"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",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"start": "ember server",
"build-storybook": "STORYBOOK=true ember build && build-storybook -s dist",
"storybook": "STORYBOOK=true start-storybook -p 6006 -s dist",