Skip to content

Commit 6741a21

Browse files
committed
[update] v2.12.0
1 parent b347111 commit 6741a21

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

.vscode/tasks.json

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,32 @@
2626
"group": "build"
2727
},
2828
{
29-
"label": "clean bin folder",
29+
"label": "prepack binaries",
3030
"type": "shell",
31-
"command": "rm ./bin/builder/* -Include *.xml,*.exe.config -Verbose -Force",
31+
"command": [
32+
"rm ./bin/builder/* -Include *.xml,*.exe.config -Verbose -Force;",
33+
"rm D:\\Code-Project\\TypeScript\\eide-templates\\binaries\\bin.zip -Verbose -Force;"
34+
],
35+
"problemMatcher": []
36+
},
37+
{
38+
"label": "pack binaries",
39+
"type": "shell",
40+
"command": "7za a -r -y -ssw -tzip -mx9 \"%OUT_NAME%\" .\\bin\\*",
41+
"options": {
42+
"shell": {
43+
"executable": "cmd.exe",
44+
"args": [
45+
"/C"
46+
]
47+
},
48+
"env": {
49+
"OUT_NAME": "D:\\Code-Project\\TypeScript\\eide-templates\\binaries\\bin.zip"
50+
}
51+
},
52+
"dependsOn": [
53+
"prepack binaries"
54+
],
3255
"problemMatcher": [],
3356
"group": "build"
3457
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"homepage": "https://github.com/github0null/eide/blob/master/README.md",
2626
"license": "MIT",
2727
"description": "A singlechip development environment for 8051/STM8/Cortex-M/RISC-V",
28-
"version": "2.11.0",
28+
"version": "2.12.0",
2929
"engines": {
3030
"vscode": "^1.38.0"
3131
},
@@ -372,7 +372,7 @@
372372
"type": "string",
373373
"scope": "machine",
374374
"markdownDescription": "%settings.sdcc.install.folder%",
375-
"default": ""
375+
"default": "${userRoot}/.eide/tools/sdcc"
376376
},
377377
"EIDE.RISCV.InstallDirectory": {
378378
"type": "string",

0 commit comments

Comments
 (0)