|
71 | 71 | "build:indices": "babel-node src/_util/cli.js reindex",
|
72 | 72 | "build:tests:noskip": "rimraf test/languages && babel-node src/_util/cli.js writetests --noskip",
|
73 | 73 | "build:tests": "rimraf test/languages && babel-node src/_util/cli.js writetests",
|
74 |
| - "build": "npm-run-all build:*", |
| 74 | + "build": "npm-run-all 'build:*'", |
75 | 75 | "fix": "eslint src --fix",
|
76 | 76 | "injectweb": "rimraf website/source/{c,golang,php,python,ruby} && babel-node src/_util/cli.js injectweb",
|
77 | 77 | "lint": "eslint src",
|
|
80 | 80 | "release:minor": "cross-env SEMANTIC=minor yarn release",
|
81 | 81 | "release:patch": "cross-env SEMANTIC=patch yarn release",
|
82 | 82 | "release": "git commit CHANGELOG.md -m 'Update CHANGELOG.md' && npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push --tags && git push && yarn build:dist && cd dist && npm publish",
|
83 |
| - "test:languages:noskip": "yarn build:tests:noskip && cross-env DEBUG=locutus:* mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"", |
84 |
| - "test:languages": "yarn build:tests && cross-env DEBUG=locutus:* mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"", |
| 83 | + "test:languages:noskip": "yarn build:tests:noskip && cross-env DEBUG='locutus:*' mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"", |
| 84 | + "test:languages": "yarn build:tests && cross-env DEBUG='locutus:*' mocha --compilers js:babel-register --reporter spec --recursive test/languages --grep \"${TEST_GREP:-}\"", |
85 | 85 | "test:module": "babel-node test/module/module.js",
|
86 | 86 | "test:util": "mocha --compilers js:babel-register --reporter spec test/util/",
|
87 | 87 | "test": "npm-run-all test:languages test:util test:module",
|
|
0 commit comments