@magic/cli 0.0.53 → 0.0.54

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 CHANGED
@@ -584,6 +584,11 @@ update dependencies
584
584
 
585
585
  - export exec, execFile and spawn option types
586
586
 
587
- ##### 0.0.54 - unreleased
587
+ ##### 0.0.54
588
+
589
+ - update types
590
+ - update dependencies
591
+
592
+ ##### 0.0.55 - unreleased
588
593
 
589
594
  - ...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic/cli",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
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.11",
40
- "@magic/deep": "0.1.20",
41
- "@magic/error": "0.0.21",
42
- "@magic/log": "0.1.21",
43
- "@magic/types": "0.1.31"
41
+ "@magic/cases": "0.0.13",
42
+ "@magic/deep": "0.1.21",
43
+ "@magic/error": "0.0.23",
44
+ "@magic/log": "0.1.22",
45
+ "@magic/types": "0.1.37"
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.156",
52
- "@magic/format": "0.0.69",
53
- "@magic/test": "0.2.28",
54
- "typescript": "5.9.3"
53
+ "@magic/core": "0.0.158",
54
+ "@magic/format": "0.0.73",
55
+ "@magic/test": "0.3.12",
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[],