multi-clasp2 3.1.0 → 4.0.1
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.
- package/README.md +5 -3
- package/build/package.json +9 -9
- package/build/src/index.js +11 -6
- package/build/src/index.js.map +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -54,9 +54,11 @@ The following clasp commands are supported. For the documentation refer to the o
|
|
|
54
54
|
- [`multi-clasp push [--force --retry <n>]`](https://github.com/google/clasp#push) <br>
|
|
55
55
|
in addition to the clasp arguments there is the --retry option: If the push of an App Script fail with it will retry times. Default is 1.
|
|
56
56
|
|
|
57
|
-
- [`multi-clasp status [--json]`](https://github.com/google/clasp#status)
|
|
58
|
-
- [`multi-clasp open
|
|
59
|
-
- [`multi-clasp
|
|
57
|
+
- [`multi-clasp show-file-status [--json]`](https://github.com/google/clasp#status)
|
|
58
|
+
- [`multi-clasp open-script`](https://github.com/google/clasp#open)
|
|
59
|
+
- [`multi-clasp open-web-app`](https://github.com/google/clasp#open)
|
|
60
|
+
- [`multi-clasp open-container`](https://github.com/google/clasp#open)
|
|
61
|
+
- [`multi-clasp list-deployments`](https://github.com/google/clasp#deployments)
|
|
60
62
|
- [`multi-clasp deploy [--versionNumber <version>] [--description <description>]`](https://github.com/google/clasp#deploy)
|
|
61
63
|
- [`multi-clasp undeploy [--all]`](https://github.com/google/clasp#undeploy)
|
|
62
64
|
- [`multi-clasp version [description]`](https://github.com/google/clasp#version)
|
package/build/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "multi-clasp2",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Google Clasp wrapper to push changes to multiple Apps Script projects at once.",
|
|
5
5
|
"exports": "./build/index.js",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
"build"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@google/clasp": "2.
|
|
40
|
-
"commander": "^14.0.
|
|
39
|
+
"@google/clasp": "3.2.0",
|
|
40
|
+
"commander": "^14.0.3",
|
|
41
41
|
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@jest/test-sequencer": "^30.2.0",
|
|
45
45
|
"@types/jest": "^30.0.0",
|
|
46
|
-
"@types/node": "^25.0
|
|
47
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
48
|
-
"@typescript-eslint/parser": "^8.
|
|
46
|
+
"@types/node": "^25.3.0",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
48
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
49
49
|
"auto-changelog": "^2.5.0",
|
|
50
|
-
"eslint": "^
|
|
51
|
-
"fs-extra": "^11.3.
|
|
50
|
+
"eslint": "^10.0.1",
|
|
51
|
+
"fs-extra": "^11.3.3",
|
|
52
52
|
"jest": "^30.2.0",
|
|
53
|
-
"release-it": "^19.
|
|
53
|
+
"release-it": "^19.2.4",
|
|
54
54
|
"ts-jest": "^29.4.6"
|
|
55
55
|
}
|
|
56
56
|
}
|
package/build/src/index.js
CHANGED
|
@@ -11,7 +11,7 @@ const push_1 = __importDefault(require("./push"));
|
|
|
11
11
|
const package_json_1 = require("../package.json");
|
|
12
12
|
const program = new commander_1.Command();
|
|
13
13
|
program
|
|
14
|
-
.command('status')
|
|
14
|
+
.command('show-file-status')
|
|
15
15
|
.description('Lists files that will be pushed by clasp')
|
|
16
16
|
.option('--json', 'Show status in JSON form')
|
|
17
17
|
.action(common_1.genericAction);
|
|
@@ -22,11 +22,16 @@ program
|
|
|
22
22
|
.option('--retry <n>', 'If the push of an App Script fail with it will retry n times. Default is 1.', '1')
|
|
23
23
|
.action(push_1.default);
|
|
24
24
|
program
|
|
25
|
-
.command('open')
|
|
26
|
-
.description('Open
|
|
27
|
-
.
|
|
28
|
-
|
|
29
|
-
.
|
|
25
|
+
.command('open-script')
|
|
26
|
+
.description('Open the Apps Script IDE for the current project.')
|
|
27
|
+
.action(common_1.genericAction);
|
|
28
|
+
program
|
|
29
|
+
.command('open-web-app')
|
|
30
|
+
.description('Open a deployed web app in the browser.')
|
|
31
|
+
.action(common_1.genericAction);
|
|
32
|
+
program
|
|
33
|
+
.command('open-container')
|
|
34
|
+
.description('Open the Apps Script IDE for the current project.')
|
|
30
35
|
.action(common_1.genericAction);
|
|
31
36
|
program.command('deployments')
|
|
32
37
|
.description('List deployment ids of a script')
|
package/build/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;AAEA,yCAAoC;AACpC,qCAAyC;AACzC,gDAAwB;AACxB,kDAA0B;AAC1B,kDAAwC;AAExC,MAAM,OAAO,GAAG,IAAI,mBAAO,EAAE,CAAC;AAE9B,OAAO;KACJ,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;AAEA,yCAAoC;AACpC,qCAAyC;AACzC,gDAAwB;AACxB,kDAA0B;AAC1B,kDAAwC;AAExC,MAAM,OAAO,GAAG,IAAI,mBAAO,EAAE,CAAC;AAE9B,OAAO;KACJ,OAAO,CAAC,kBAAkB,CAAC;KAC3B,WAAW,CAAC,0CAA0C,CAAC;KACvD,MAAM,CAAC,QAAQ,EAAE,0BAA0B,CAAC;KAC5C,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO;KACJ,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,2BAA2B,CAAC;KACxC,MAAM,CAAC,aAAa,EAAE,0CAA0C,CAAC;KACjE,MAAM,CAAC,aAAa,EAAE,6EAA6E,EAAE,GAAG,CAAC;KACzG,MAAM,CAAC,cAAI,CAAC,CAAC;AAEhB,OAAO;KACJ,OAAO,CAAC,aAAa,CAAC;KACtB,WAAW,CAAC,mDAAmD,CAAC;KAChE,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO;KACJ,OAAO,CAAC,cAAc,CAAC;KACvB,WAAW,CAAC,yCAAyC,CAAC;KACtD,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO;KACJ,OAAO,CAAC,gBAAgB,CAAC;KACzB,WAAW,CAAC,mDAAmD,CAAC;KAChE,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC;KAC3B,WAAW,CAAC,iCAAiC,CAAC;KAC9C,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO;KACJ,OAAO,CAAC,QAAQ,CAAC;KACjB,WAAW,CAAC,kBAAkB,CAAC;KAC/B,MAAM,CAAC,+BAA+B,EAAE,qBAAqB,CAAC,CAAC,uCAAuC;KACtG,MAAM,CAAC,iCAAiC,EAAE,4BAA4B,CAAC;KACvE,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO;KACJ,OAAO,CAAC,UAAU,CAAC;KACnB,WAAW,CAAC,oCAAoC,CAAC;KACjD,MAAM,CAAC,WAAW,EAAE,0BAA0B,CAAC;KAC/C,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO;KACJ,OAAO,CAAC,oBAAoB,CAAC;KAC7B,WAAW,CAAC,6CAA6C,CAAC;KAC1D,MAAM,CAAC,UAAU,EAAE,oCAAoC,CAAC;KACxD,MAAM,CAAC,4BAA4B,EAAE,iEAAiE,CAAC;KACvG,MAAM,CAAC,aAAG,CAAC,CAAC;AAEf,OAAO;KACJ,OAAO,CAAC,uBAAuB,CAAC;KAChC,WAAW,CAAC,4CAA4C,CAAC;KACzD,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO;KACJ,OAAO,CAAC,UAAU,CAAC;KACnB,WAAW,CAAC,2BAA2B,CAAC;KACxC,MAAM,CAAC,sBAAa,CAAC,CAAC;AAEzB,OAAO,CAAC,OAAO,CAAC,sBAAO,IAAI,SAAS,EAAE,eAAe,EAAE,4BAA4B,CAAC,CAAC;AACrF,OAAO,CAAC,KAAK,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "multi-clasp2",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Google Clasp wrapper to push changes to multiple Apps Script projects at once.",
|
|
5
5
|
"exports": "./build/index.js",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
"build"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@google/clasp": "2.
|
|
40
|
-
"commander": "^14.0.
|
|
39
|
+
"@google/clasp": "3.2.0",
|
|
40
|
+
"commander": "^14.0.3",
|
|
41
41
|
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@jest/test-sequencer": "^30.2.0",
|
|
45
45
|
"@types/jest": "^30.0.0",
|
|
46
|
-
"@types/node": "^25.0
|
|
47
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
48
|
-
"@typescript-eslint/parser": "^8.
|
|
46
|
+
"@types/node": "^25.3.0",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
48
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
49
49
|
"auto-changelog": "^2.5.0",
|
|
50
|
-
"eslint": "^
|
|
51
|
-
"fs-extra": "^11.3.
|
|
50
|
+
"eslint": "^10.0.1",
|
|
51
|
+
"fs-extra": "^11.3.3",
|
|
52
52
|
"jest": "^30.2.0",
|
|
53
|
-
"release-it": "^19.
|
|
53
|
+
"release-it": "^19.2.4",
|
|
54
54
|
"ts-jest": "^29.4.6"
|
|
55
55
|
}
|
|
56
56
|
}
|