Skip to content

Commit

Permalink
fix: windows compatibility scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed May 24, 2019
1 parent f7b1d2a commit 0ed1f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tasks/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module.exports = () => {
start: 'npm run build -- -w',
prebuild: 'npm run clean',
build:
"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
'cross-env NODE_ENV=production babel src -d dist --ignore "src/**/*.test.js" --copy-files',
clean: 'del-cli dist',
commitlint: 'commitlint --from=master',
lint: 'eslint --cache src test --ignore-path .gitignore',
Expand All @@ -81,7 +81,7 @@ module.exports = () => {
'test:only': 'cross-env NODE_ENV=test jest',
'test:watch': 'cross-env NODE_ENV=test jest --watch',
'test:coverage':
"cross-env NODE_ENV=test jest --collectCoverageFrom='src/**/*.js' --coverage",
'cross-env NODE_ENV=test jest --collectCoverageFrom="src/**/*.js" --coverage',
pretest: 'npm run lint',
test: 'cross-env NODE_ENV=test npm run test:coverage',
defaults: existing.scripts.defaults || 'webpack-defaults',
Expand Down

0 comments on commit 0ed1f9d

Please sign in to comment.