Skip to content

Commit dc8360b

Browse files
author
Akos Kitta
committed
fix(dev): faster build script
skip webpack app minification
1 parent 129436b commit dc8360b

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

arduino-ide-extension/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"lint": "eslint",
1717
"prebuild": "rimraf lib",
1818
"build": "tsc",
19+
"build:dev": "yarn build",
1920
"postbuild": "ncp ./src/node/cli-protocol/ ./lib/node/cli-protocol/",
2021
"watch": "tsc -w",
2122
"test": "cross-env IDE2_TEST=true mocha \"./lib/test/**/*.test.js\"",

electron-app/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"prepare": "theia download:plugins",
4747
"prebuild": "rimraf lib",
4848
"build": "theia build",
49+
"build:dev": "theia build --mode development",
4950
"test": "mocha \"./test/**/*.test.js\"",
5051
"start": "theia start --plugins=local-dir:../plugins",
5152
"watch": "theia build --watch --mode development",

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"start": "yarn --cwd ./electron-app start",
4343
"watch": "lerna run watch --parallel",
4444
"build": "lerna run build",
45+
"build:dev": "lerna run build:dev",
4546
"test": "lerna run test",
4647
"test:slow": "lerna run test:slow",
4748
"update:version": "node ./scripts/update-version.js",

0 commit comments

Comments
 (0)