summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-02-07 16:49:03 -0600
committerMike Greiling <mike@pixelcog.com>2017-02-13 12:23:03 -0600
commit469bc859ce92b2ef8cb5be56376504e44e239197 (patch)
tree2ad95ca65689be9fe7b98caa18fbeccab5e7e367
parent86ace2a9470805cd110f61c928f0857289f9af63 (diff)
downloadgitlab-ce-469bc859ce92b2ef8cb5be56376504e44e239197.tar.gz
remove recursive npm calls to avoid dependence on npm after switch to yarn
-rw-r--r--package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index 24e11a4607f..7b1c7a14d02 100644
--- a/package.json
+++ b/package.json
@@ -3,12 +3,12 @@
"scripts": {
"dev-server": "webpack-dev-server --config config/webpack.config.js",
"eslint": "eslint --max-warnings 0 --ext .js,.js.es6 .",
- "eslint-fix": "npm run eslint -- --fix",
- "eslint-report": "npm run eslint -- --format html --output-file ./eslint-report.html",
+ "eslint-fix": "eslint --max-warnings 0 --ext .js,.js.es6 --fix .",
+ "eslint-report": "eslint --max-warnings 0 --ext .js,.js.es6 --format html --output-file ./eslint-report.html .",
"karma": "karma start config/karma.config.js --single-run",
"karma-start": "karma start config/karma.config.js",
"webpack": "webpack --config config/webpack.config.js",
- "webpack-prod": "NODE_ENV=production npm run webpack"
+ "webpack-prod": "NODE_ENV=production webpack --config config/webpack.config.js"
},
"dependencies": {
"babel-core": "^6.22.1",