Skip to content

Commit

Permalink
Fix glob matching build error in npm-run-all
Browse files Browse the repository at this point in the history
Glob matching does not work when specified in script using Yarn 2.

Refer to mysticatea/npm-run-all#200
  • Loading branch information
cipherdragon committed Feb 20, 2022
1 parent fb44cfe commit eb56d40
Show file tree
Hide file tree
Showing 2 changed files with 1,511 additions and 1,495 deletions.
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@
"repository": "github:cipherdragon/zombie-diary",
"license": "MIT",
"private": true,
"packageManager": "yarn@3.1.1",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "npm-run-all build:ts --parallel start:*",
"start:ts": "run-p start:ts:*",
"start": "npm-run-all build:ts --parallel 'start:*'",
"start:ts": "run-p 'start:ts:*'",
"start:ts:main": "webpack --config ./webpack.main.ts --mode development --watch",
"start:ts:renderer": "webpack --config ./webpack.renderer.ts --mode development --watch",
"start:app": "electron .",
"build": "run-s build:*",
"build": "run-s 'build:*'",
"build:clean": "rm -rf ./bundle ./dist",
"build:ts": "run-p build:ts:*",
"build:ts": "run-p 'build:ts:*'",
"build:ts:main": "webpack --config ./webpack.main.ts --mode production",
"build:ts:renderer": "webpack --config ./webpack.renderer.ts --mode production",
"test": "run-s test:*",
"test": "run-s 'test:*'",
"test:jest": "jest",
"lint:css": "stylelint --ignore-path ./.gitignore --max-warnings 0 \"**/*.{css,sass,scss}\"",
"lint:css:fix": "yarn lint:css --fix",
Expand Down
Loading

0 comments on commit eb56d40

Please # to comment.