diff options
author | Filipa Lacerda <lacerda.filipa@gmail.com> | 2017-02-14 18:01:45 +0000 |
---|---|---|
committer | Filipa Lacerda <lacerda.filipa@gmail.com> | 2017-02-14 18:01:45 +0000 |
commit | 0b25368907fb1491b840d93ebb780b9ef2b130dd (patch) | |
tree | 47d67e22ed0b0c724049562c4d83c910217113d5 /package.json | |
parent | 10a063e945b38e87f7a7d463d9d3a5dcd8ea736f (diff) | |
parent | e8b5b082da28bff1c9728c913484bdf12f936b95 (diff) | |
download | gitlab-ce-0b25368907fb1491b840d93ebb780b9ef2b130dd.tar.gz |
Merge branch 'replace-npm-with-yarn' into 'master'
Replace NPM with Yarn
See merge request !9055
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json index 3e36bf1c2bd..48f571eda9b 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", |