Skip to content

Commit d8625ad

Browse files
Akos KittaChristian Weichel
Akos Kitta
authored and
Christian Weichel
committed
Use the light theme as the default one.
Signed-off-by: Akos Kitta <kittaakos@typefox.io>
1 parent 8a04893 commit d8625ad

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

arduino-ide-browser/package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,13 @@
2626
"prepare": "theia build --mode development",
2727
"start": "theia start --root-dir=../workspace",
2828
"watch": "theia build --watch --mode development"
29+
},
30+
"theia": {
31+
"frontend": {
32+
"config": {
33+
"applicationName": "Arduino-PoC",
34+
"defaultTheme": "light"
35+
}
36+
}
2937
}
3038
}

arduino-ide-electron/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@
3030
},
3131
"theia": {
3232
"target": "electron",
33-
"backend": {
33+
"frontend": {
3434
"config": {
35-
"startupTimeout": -1
35+
"applicationName": "Arduino-PoC",
36+
"defaultTheme": "light"
3637
}
3738
}
3839
}

arduino-ide-extension/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"version": "0.0.1",
44
"description": "An extension for Theia building the Arduino IDE",
55
"license": "MIT",
6+
"engines": {
7+
"node": ">=10.10.0"
8+
},
69
"dependencies": {
710
"@grpc/grpc-js": "^0.4.0",
811
"@theia/core": "next",

electron/build/template-package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"package:preview": "electron-builder --dir"
1818
},
1919
"engines": {
20-
"node": ">=8.12.0"
20+
"node": ">=10.10.0"
2121
},
2222
"repository": {
2323
"type": "git",
@@ -41,7 +41,7 @@
4141
"!node_modules/**/*.{ts,map}",
4242
"!node_modules/**/*.spec.js",
4343
"!node_modules/@theia/**/test/*",
44-
"!node_modules/@theia/**/src/*",
44+
"!node_modules/@theia/**/src/*.ts",
4545
"!node_modules/@theia/java/download",
4646
"!node_modules/@theia/**/lib/*browser/*",
4747
"!node_modules/@typefox/monaco-editor-core/*",

0 commit comments

Comments
 (0)