build: don't try to use yarn before building it

This commit is contained in:
merceyz 2020-09-29 14:00:07 +02:00
parent 9e677ee4f3
commit b75683a27e
1 changed files with 2 additions and 2 deletions

View File

@ -42,9 +42,9 @@
"webpack-cli": "^3.3.11" "webpack-cli": "^3.3.11"
}, },
"scripts": { "scripts": {
"build": "rm -rf dist && yarn webpack && yarn ts-node ./mkshims.ts", "build": "rm -rf dist && webpack && ts-node ./mkshims.ts",
"corepack": "ts-node ./sources/main.ts", "corepack": "ts-node ./sources/main.ts",
"prepack": "yarn build", "prepack": "node ./.yarn/releases/*.*js build",
"postpack": "rm -rf dist shims" "postpack": "rm -rf dist shims"
}, },
"files": [ "files": [