chore(scripts): espace commands arguments that use a glob matching pattern (#2435)

This commit is contained in:
Erez Rokah
2019-07-18 23:59:31 +03:00
committed by Shawn Erquhart
parent 9a3c9d2ffb
commit 8fe72d0686
25 changed files with 26 additions and 26 deletions

View File

@ -10,7 +10,7 @@
"build-preview:lerna": "lerna run build-preview",
"build:demo": "run-s build build:demo:copy",
"build:demo:copy": "ncp packages/netlify-cms/dist dev-test/dist/",
"clean": "rimraf packages/*/dist dev-test/dist",
"clean": "rimraf \"packages/*/dist\" dev-test/dist",
"clean:lerna": "lerna clean --yes",
"reset": "run-s clean clean:lerna",
"test": "run-s clean lint test:unit",
@ -27,7 +27,7 @@
"test:e2e:exec-dev": "cypress open",
"test:e2e:run": "start-test test:e2e:serve 8080 test:e2e:exec",
"test:e2e:run-ci": "start-test test:e2e:serve 8080 test:e2e:exec-ci",
"lint": "run-p -c --aggregate-output lint:*",
"lint": "run-p -c --aggregate-output \"lint:*\"",
"lint-quiet": "run-p -c --aggregate-output \"lint:* -- --quiet\"",
"lint:css": "stylelint --ignore-path .gitignore \"{packages/**/*.{css,js},website/**/*.css}\"",
"lint:js": "eslint --color --ignore-path .gitignore \"{{packages,scripts,website}/**/,}*.js\"",