Skip to content

Commit

Permalink
chore: fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
bytemain committed Dec 7, 2022
1 parent fdcca0a commit 1031b31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"scripts": {
"preinstall": "node scripts/preinstall.js && husky install",
"clean": "rimraf './packages/*/lib'",
"clean": "rimraf \"./packages/*/lib\"",
"check:dep": "ts-node ./scripts/depcheck",
"init": "yarn run clean && yarn run build:all",
"start": "yarn run rebuild:node && cross-env HOST=127.0.0.1 WS_PATH=ws://127.0.0.1:8000 NODE_ENV=development ts-node ./scripts/start",
Expand Down
6 changes: 3 additions & 3 deletions tools/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"watch:extension": "webpack --config ./build/webpack.extension-host.config.js -w --mode=development",
"watch:main": "webpack --config ./build/webpack.main.config.js -w --mode=development",
"watch:webview": "webpack --config ./build/webpack.webview.config.js -w --mode=development",
"watch": "run-p 'watch:*'",
"build": "rimraf -rf ./out && run-p 'build:*'",
"build-prod": "rimraf -rf ./out && run-p 'build-prod:*'",
"watch": "run-p \"watch:*\"",
"build": "rimraf -rf ./out && run-p \"build:*\"",
"build-prod": "rimraf -rf ./out && run-p \"build-prod:*\"",
"pack": "yarn run build && node build/pack.js",
"rebuild-native": "node ./scripts/rebuild-native.js --target=electron",
"start": "electron --inspect=9229 .",
Expand Down

0 comments on commit 1031b31

Please sign in to comment.