Skip to content

Commit 4fdbf3a

Browse files
committed
Fix breaking build with yarn4
1 parent 32ae7e9 commit 4fdbf3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"build:indices": "babel-node src/_util/cli.js reindex",
7272
"build:tests:noskip": "rimraf test/languages && babel-node src/_util/cli.js writetests --noskip",
7373
"build:tests": "rimraf test/languages && babel-node src/_util/cli.js writetests",
74-
"build": "npm-run-all build:*",
74+
"build": "npm-run-all 'build:*'",
7575
"fix": "eslint src --fix",
7676
"injectweb": "rimraf website/source/{c,golang,php,python,ruby} && babel-node src/_util/cli.js injectweb",
7777
"lint": "eslint src",
@@ -80,8 +80,8 @@
8080
"release:minor": "cross-env SEMANTIC=minor yarn release",
8181
"release:patch": "cross-env SEMANTIC=patch yarn release",
8282
"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:-}\"",
8585
"test:module": "babel-node test/module/module.js",
8686
"test:util": "mocha --compilers js:babel-register --reporter spec test/util/",
8787
"test": "npm-run-all test:languages test:util test:module",

0 commit comments

Comments
 (0)