@cloudbase/cli 1.9.2 → 1.9.3-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,30 @@
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for thedocumentation about the tasks.json format
4
+ "version": "2.0.0",
5
+ "command": "tsc",
6
+ //-p 指定目录;-w watch,检测文件改变自动编译
7
+ "args": [
8
+ "-p",
9
+ ".",
10
+ "-w"
11
+ ],
12
+ "problemMatcher": "$tsc",
13
+ "tasks": [
14
+ {
15
+ "label": "tsc",
16
+ "type": "shell",
17
+ "command": "tsc",
18
+ "args": [
19
+ "-p",
20
+ ".",
21
+ "-w"
22
+ ],
23
+ "problemMatcher": "$tsc",
24
+ "group": {
25
+ "_id": "build",
26
+ "isDefault": false
27
+ }
28
+ }
29
+ ]
30
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for thedocumentation about the tasks.json format
4
+ "version": "0.1.0",
5
+ "command": "tsc",
6
+ "isShellCommand": true,
7
+ //-p 指定目录;-w watch,检测文件改变自动编译
8
+ "args": ["-p", ".","-w"],
9
+ "showOutput": "always",
10
+ "problemMatcher": "$tsc"
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/cli",
3
- "version": "1.9.2",
3
+ "version": "1.9.3-alpha.2",
4
4
  "description": "cli tool for cloudbase",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -26,7 +26,7 @@
26
26
  "dependencies": {
27
27
  "@cloudbase/cloud-api": "^0.4.0",
28
28
  "@cloudbase/framework-core": "^1.6.1",
29
- "@cloudbase/lowcode-cli": "^0.7.9",
29
+ "@cloudbase/lowcode-cli": "0.11.0-alpha.0",
30
30
  "@cloudbase/manager-node": "^3.9.0",
31
31
  "@cloudbase/toolbox": "^0.7.2",
32
32
  "@sentry/node": "^5.10.2",