@magic/cli 0.0.53 → 0.0.55
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 +10 -1
- package/package.json +13 -11
- package/types/index.d.ts +1 -1
package/README.md
CHANGED
|
@@ -584,6 +584,15 @@ update dependencies
|
|
|
584
584
|
|
|
585
585
|
- export exec, execFile and spawn option types
|
|
586
586
|
|
|
587
|
-
##### 0.0.54
|
|
587
|
+
##### 0.0.54
|
|
588
|
+
|
|
589
|
+
- update types
|
|
590
|
+
- update dependencies
|
|
591
|
+
|
|
592
|
+
##### 0.0.55
|
|
593
|
+
|
|
594
|
+
- update dependencies
|
|
595
|
+
|
|
596
|
+
##### 0.0.56 - unreleased
|
|
588
597
|
|
|
589
598
|
- ...
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"homepage": "https://magic.github.io/cli",
|
|
5
5
|
"description": "declarative command line interfaces with aliasing, commands and environment sanitization",
|
|
6
6
|
"scripts": {
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
"build:docs": "NODE_ENV=production magic build",
|
|
13
13
|
"prod": "NODE_ENV=production magic build serve",
|
|
14
14
|
"dev": "magic dev",
|
|
15
|
-
"calls": "calls"
|
|
15
|
+
"calls": "calls",
|
|
16
|
+
"tsc": "tsc --noEmit",
|
|
17
|
+
"check": "npm run tsc"
|
|
16
18
|
},
|
|
17
19
|
"main": "src/index.js",
|
|
18
20
|
"types": "types/index.d.ts",
|
|
@@ -36,11 +38,11 @@
|
|
|
36
38
|
"declarative"
|
|
37
39
|
],
|
|
38
40
|
"dependencies": {
|
|
39
|
-
"@magic/cases": "0.0.
|
|
40
|
-
"@magic/deep": "0.1.
|
|
41
|
-
"@magic/error": "0.0.
|
|
42
|
-
"@magic/log": "0.1.
|
|
43
|
-
"@magic/types": "0.1.
|
|
41
|
+
"@magic/cases": "0.0.14",
|
|
42
|
+
"@magic/deep": "0.1.22",
|
|
43
|
+
"@magic/error": "0.0.24",
|
|
44
|
+
"@magic/log": "0.1.23",
|
|
45
|
+
"@magic/types": "0.1.38"
|
|
44
46
|
},
|
|
45
47
|
"devDependencies": {
|
|
46
48
|
"@magic-modules/git-badges": "0.0.12",
|
|
@@ -48,10 +50,10 @@
|
|
|
48
50
|
"@magic-modules/no-spy": "0.0.9",
|
|
49
51
|
"@magic-modules/pre": "0.0.12",
|
|
50
52
|
"@magic-themes/docs": "0.0.15",
|
|
51
|
-
"@magic/core": "0.0.
|
|
52
|
-
"@magic/format": "0.0.
|
|
53
|
-
"@magic/test": "0.
|
|
54
|
-
"typescript": "
|
|
53
|
+
"@magic/core": "0.0.159",
|
|
54
|
+
"@magic/format": "0.0.74",
|
|
55
|
+
"@magic/test": "0.3.21",
|
|
56
|
+
"typescript": "6.0.3"
|
|
55
57
|
},
|
|
56
58
|
"author": "Wizards & Witches",
|
|
57
59
|
"license": "AGPL-3.0",
|
package/types/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export const spawn: (
|
|
|
9
9
|
cmd: string,
|
|
10
10
|
args?: string[],
|
|
11
11
|
options?: import('./spawn.js').CLISpawnOptions,
|
|
12
|
-
) => import('child_process').ChildProcess
|
|
12
|
+
) => import('node:child_process').ChildProcess
|
|
13
13
|
export const exec: (cmd: string, options?: import('./exec.js').CLIExecOptions) => Promise<string>
|
|
14
14
|
export const prompt: (
|
|
15
15
|
msg?: string | string[],
|