@design-edito/cli 0.0.88 → 0.0.91
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/add/index.js +9 -0
- package/add/index.js.map +7 -0
- package/cli/assets/list.txt +6 -0
- package/cli/assets/version.txt +1 -1
- package/commit/index.js +9 -0
- package/commit/index.js.map +7 -0
- package/package.json +14 -8
- package/pull/index.js +9 -0
- package/pull/index.js.map +7 -0
- package/push/index.js +9 -0
- package/push/index.js.map +7 -0
- package/reset/index.js +9 -0
- package/reset/index.js.map +7 -0
- package/serve/index.js +1 -1
- package/serve/index.js.map +3 -3
- package/status/index.js +9 -0
- package/status/index.js.map +7 -0
package/add/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import{exec as e}from"child_process";import{program as r}from"commander";r.name("@design-edito/add").description('Shorthand for git add with arguments forwarding (defaults to "*")').allowUnknownOption(!0).arguments("[args...]").action(n=>{let a=n.length>0?n.join(" "):".*";e(`git add ${a}`,(o,i,t)=>{o&&console.log(`
|
|
3
|
+
ERR
|
|
4
|
+
`,o),t&&console.log(`
|
|
5
|
+
stderr:
|
|
6
|
+
`,t),i&&console.log(`
|
|
7
|
+
stdout:
|
|
8
|
+
`,i)})});r.parse(process.argv);
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
package/add/index.js.map
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/add/index.ts"],
|
|
4
|
+
"sourcesContent": ["import { exec } from 'child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/add')\n .description('Shorthand for git add with arguments forwarding (defaults to \"*\")')\n .allowUnknownOption(true)\n .arguments('[args...]')\n .action((args: string[]) => {\n const finalArgs = args.length > 0 ? args.join(' ') : '.*'\n exec(`git add ${finalArgs}`, (error, stdout, stderr) => {\n if (error) console.log('\\nERR\\n', error)\n if (stderr) console.log('\\nstderr:\\n', stderr)\n if (stdout) console.log('\\nstdout:\\n', stdout)\n })\n })\n\nprogram.parse(process.argv)\n"],
|
|
5
|
+
"mappings": "AAAA,OAAS,QAAAA,MAAY,gBACrB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,mBAAmB,EACxB,YAAY,mEAAmE,EAC/E,mBAAmB,EAAI,EACvB,UAAU,WAAW,EACrB,OAAQC,GAAmB,CAC1B,IAAMC,EAAYD,EAAK,OAAS,EAAIA,EAAK,KAAK,GAAG,EAAI,KACrDF,EAAK,WAAWG,CAAS,GAAI,CAACC,EAAOC,EAAQC,IAAW,CAClDF,GAAO,QAAQ,IAAI;AAAA;AAAA,EAAWA,CAAK,EACnCE,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,EACzCD,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,CAC/C,CAAC,CACH,CAAC,EAEHJ,EAAQ,MAAM,QAAQ,IAAI",
|
|
6
|
+
"names": ["exec", "program", "args", "finalArgs", "error", "stdout", "stderr"]
|
|
7
|
+
}
|
package/cli/assets/list.txt
CHANGED
package/cli/assets/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.91
|
package/commit/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import{exec as s}from"child_process";import{program as i}from"commander";i.name("@design-edito/commit").description('Shorthand for git commit -m "<message>"').argument("<message>","Commit message").action(async n=>{s(`git commit -m "${n}"`,(o,m,e)=>{o&&console.log(`
|
|
3
|
+
ERR
|
|
4
|
+
`,o),e&&console.log(`
|
|
5
|
+
stderr:
|
|
6
|
+
`,e),m&&console.log(`
|
|
7
|
+
stdout:
|
|
8
|
+
`,m)})});i.parse(process.argv);
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/commit/index.ts"],
|
|
4
|
+
"sourcesContent": ["import { exec } from 'child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/commit')\n .description('Shorthand for git commit -m \"<message>\"')\n .argument('<message>', 'Commit message')\n .action(async message => {\n exec(`git commit -m \"${message}\"`, (error, stdout, stderr) => {\n if (error) console.log('\\nERR\\n', error)\n if (stderr) console.log('\\nstderr:\\n', stderr)\n if (stdout) console.log('\\nstdout:\\n', stdout)\n })\n })\n\nprogram.parse(process.argv)\n"],
|
|
5
|
+
"mappings": "AAAA,OAAS,QAAAA,MAAY,gBACrB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,sBAAsB,EAC3B,YAAY,yCAAyC,EACrD,SAAS,YAAa,gBAAgB,EACtC,OAAO,MAAMC,GAAW,CACvBF,EAAK,kBAAkBE,CAAO,IAAK,CAACC,EAAOC,EAAQC,IAAW,CACxDF,GAAO,QAAQ,IAAI;AAAA;AAAA,EAAWA,CAAK,EACnCE,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,EACzCD,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,CAC/C,CAAC,CACH,CAAC,EAEHH,EAAQ,MAAM,QAAQ,IAAI",
|
|
6
|
+
"names": ["exec", "program", "message", "error", "stdout", "stderr"]
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@design-edito/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.91",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Maxime Fabas",
|
|
6
6
|
"license": "ISC",
|
|
@@ -12,23 +12,29 @@
|
|
|
12
12
|
"main": "index.js",
|
|
13
13
|
"module": "index.js",
|
|
14
14
|
"bin": {
|
|
15
|
+
"add": "./add/index.js",
|
|
15
16
|
"cli": "./cli/index.js",
|
|
17
|
+
"commit": "./commit/index.js",
|
|
16
18
|
"make-template": "./make-template/index.js",
|
|
19
|
+
"push": "./push/index.js",
|
|
20
|
+
"pull": "./pull/index.js",
|
|
17
21
|
"serve": "./serve/index.js",
|
|
22
|
+
"reset": "./reset/index.js",
|
|
23
|
+
"status": "./status/index.js",
|
|
18
24
|
"tree": "./tree/index.js"
|
|
19
25
|
},
|
|
20
26
|
"dependencies": {
|
|
21
|
-
"@design-edito/tools": "^0.1.
|
|
22
|
-
"commander": "^
|
|
27
|
+
"@design-edito/tools": "^0.1.69",
|
|
28
|
+
"commander": "^14.0.0",
|
|
23
29
|
"prompts": "^2.4.2"
|
|
24
30
|
},
|
|
25
31
|
"devDependencies": {
|
|
26
|
-
"@types/node": "^22.
|
|
32
|
+
"@types/node": "^22.15.29",
|
|
27
33
|
"@types/prompts": "^2.4.9",
|
|
28
|
-
"@types/semver": "^7.
|
|
29
|
-
"esbuild": "^0.25.
|
|
30
|
-
"semver": "^7.7.
|
|
34
|
+
"@types/semver": "^7.7.0",
|
|
35
|
+
"esbuild": "^0.25.5",
|
|
36
|
+
"semver": "^7.7.2",
|
|
31
37
|
"simple-git": "^3.27.0",
|
|
32
|
-
"typescript": "^5.8.
|
|
38
|
+
"typescript": "^5.8.3"
|
|
33
39
|
}
|
|
34
40
|
}
|
package/pull/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import{exec as t}from"child_process";import{program as r}from"commander";r.name("@design-edito/pull").description("Shorthand for git pull with arguments forwarding").allowUnknownOption(!0).arguments("[args...]").action(l=>{t(`git pull ${l.join(" ")}`,(o,n,i)=>{o&&console.log(`
|
|
3
|
+
ERR
|
|
4
|
+
`,o),i&&console.log(`
|
|
5
|
+
stderr:
|
|
6
|
+
`,i),n&&console.log(`
|
|
7
|
+
stdout:
|
|
8
|
+
`,n)})});r.parse(process.argv);
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/pull/index.ts"],
|
|
4
|
+
"sourcesContent": ["import { exec } from 'child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/pull')\n .description('Shorthand for git pull with arguments forwarding')\n .allowUnknownOption(true)\n .arguments('[args...]')\n .action((args: string[]) => {\n exec(`git pull ${args.join(' ')}`, (error, stdout, stderr) => {\n if (error) console.log('\\nERR\\n', error)\n if (stderr) console.log('\\nstderr:\\n', stderr)\n if (stdout) console.log('\\nstdout:\\n', stdout)\n })\n })\n\nprogram.parse(process.argv)\n"],
|
|
5
|
+
"mappings": "AAAA,OAAS,QAAAA,MAAY,gBACrB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,oBAAoB,EACzB,YAAY,kDAAkD,EAC9D,mBAAmB,EAAI,EACvB,UAAU,WAAW,EACrB,OAAQC,GAAmB,CAC1BF,EAAK,YAAYE,EAAK,KAAK,GAAG,CAAC,GAAI,CAACC,EAAOC,EAAQC,IAAW,CACxDF,GAAO,QAAQ,IAAI;AAAA;AAAA,EAAWA,CAAK,EACnCE,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,EACzCD,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,CAC/C,CAAC,CACH,CAAC,EAEHH,EAAQ,MAAM,QAAQ,IAAI",
|
|
6
|
+
"names": ["exec", "program", "args", "error", "stdout", "stderr"]
|
|
7
|
+
}
|
package/push/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import{exec as t}from"child_process";import{program as r}from"commander";r.name("@design-edito/push").description("Shorthand for git push with arguments forwarding").allowUnknownOption(!0).arguments("[args...]").action(s=>{t(`git push ${s.join(" ")}`,(o,n,i)=>{o&&console.log(`
|
|
3
|
+
ERR
|
|
4
|
+
`,o),i&&console.log(`
|
|
5
|
+
stderr:
|
|
6
|
+
`,i),n&&console.log(`
|
|
7
|
+
stdout:
|
|
8
|
+
`,n)})});r.parse(process.argv);
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/push/index.ts"],
|
|
4
|
+
"sourcesContent": ["import { exec } from 'child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/push')\n .description('Shorthand for git push with arguments forwarding')\n .allowUnknownOption(true)\n .arguments('[args...]')\n .action((args: string[]) => {\n exec(`git push ${args.join(' ')}`, (error, stdout, stderr) => {\n if (error) console.log('\\nERR\\n', error)\n if (stderr) console.log('\\nstderr:\\n', stderr)\n if (stdout) console.log('\\nstdout:\\n', stdout)\n })\n })\n\nprogram.parse(process.argv)\n"],
|
|
5
|
+
"mappings": "AAAA,OAAS,QAAAA,MAAY,gBACrB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,oBAAoB,EACzB,YAAY,kDAAkD,EAC9D,mBAAmB,EAAI,EACvB,UAAU,WAAW,EACrB,OAAQC,GAAmB,CAC1BF,EAAK,YAAYE,EAAK,KAAK,GAAG,CAAC,GAAI,CAACC,EAAOC,EAAQC,IAAW,CACxDF,GAAO,QAAQ,IAAI;AAAA;AAAA,EAAWA,CAAK,EACnCE,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,EACzCD,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,CAC/C,CAAC,CACH,CAAC,EAEHH,EAAQ,MAAM,QAAQ,IAAI",
|
|
6
|
+
"names": ["exec", "program", "args", "error", "stdout", "stderr"]
|
|
7
|
+
}
|
package/reset/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import{exec as s}from"child_process";import{program as r}from"commander";r.name("@design-edito/reset").description("Shorthand for git reset with arguments forwarding").allowUnknownOption(!0).arguments("[args...]").action(t=>{let i=`git reset ${t.join(" ")}`;s(i,(o,n,e)=>{o&&console.log(`
|
|
3
|
+
ERR
|
|
4
|
+
`,o),e&&console.log(`
|
|
5
|
+
stderr:
|
|
6
|
+
`,e),n&&console.log(`
|
|
7
|
+
stdout:
|
|
8
|
+
`,n)})});r.parse(process.argv);
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/reset/index.ts"],
|
|
4
|
+
"sourcesContent": ["import { exec } from 'child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/reset')\n .description('Shorthand for git reset with arguments forwarding')\n .allowUnknownOption(true)\n .arguments('[args...]')\n .action((args: string[]) => {\n const cmd = `git reset ${args.join(' ')}`\n\n exec(cmd, (error, stdout, stderr) => {\n if (error) console.log('\\nERR\\n', error)\n if (stderr) console.log('\\nstderr:\\n', stderr)\n if (stdout) console.log('\\nstdout:\\n', stdout)\n })\n })\n\nprogram.parse(process.argv)\n"],
|
|
5
|
+
"mappings": "AAAA,OAAS,QAAAA,MAAY,gBACrB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,qBAAqB,EAC1B,YAAY,mDAAmD,EAC/D,mBAAmB,EAAI,EACvB,UAAU,WAAW,EACrB,OAAQC,GAAmB,CAC1B,IAAMC,EAAM,aAAaD,EAAK,KAAK,GAAG,CAAC,GAEvCF,EAAKG,EAAK,CAACC,EAAOC,EAAQC,IAAW,CAC/BF,GAAO,QAAQ,IAAI;AAAA;AAAA,EAAWA,CAAK,EACnCE,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,EACzCD,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,CAC/C,CAAC,CACH,CAAC,EAEHJ,EAAQ,MAAM,QAAQ,IAAI",
|
|
6
|
+
"names": ["exec", "program", "args", "cmd", "error", "stdout", "stderr"]
|
|
7
|
+
}
|
package/serve/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import{spawn as
|
|
2
|
+
import{spawn as a}from"node:child_process";import{program as n}from"commander";n.name("@design-edito/serve").description("Quickly spawn a HTTP server").argument("[port]","Depth","3000").option("-c, --cache <seconds>","Cache duration in seconds","-1").option("--cors","Enable CORS",!1).action(async(t,c)=>{let{cache:i,cors:p}=c,o=parseInt(t),s=parseInt(i),e=["http-server","--port",Number.isNaN(o)?"3000":o.toString(),"--cache",Number.isNaN(s)?"-1":s.toString()];p&&e.push("--cors"),a("npx",e,{stdio:"inherit"});let r=()=>{console.log("Exiting..."),process.exit(0)};process.on("SIGINT",r),process.on("SIGTERM",r)});n.parse(process.argv);
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/serve/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/serve/index.ts"],
|
|
4
|
-
"sourcesContent": ["import { spawn } from 'node:child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/serve')\n .description('Quickly spawn a HTTP server')\n .argument('[port]', 'Depth', '3000')\n .option('-c, --cache <seconds>', 'Cache duration in seconds', '-1')\n .option('--cors', 'Enable CORS', false)\n .action(async (port, options) => {\n
|
|
5
|
-
"mappings": "AAAA,OAAS,SAAAA,MAAa,qBACtB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,qBAAqB,EAC1B,YAAY,6BAA6B,EACzC,SAAS,SAAU,QAAS,MAAM,EAClC,OAAO,wBAAyB,4BAA6B,IAAI,EACjE,OAAO,SAAU,cAAe,EAAK,EACrC,OAAO,MAAOC,EAAMC,IAAY,CAC/
|
|
6
|
-
"names": ["spawn", "program", "port", "options", "onShutdown"]
|
|
4
|
+
"sourcesContent": ["import { spawn } from 'node:child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/serve')\n .description('Quickly spawn a HTTP server')\n .argument('[port]', 'Depth', '3000')\n .option('-c, --cache <seconds>', 'Cache duration in seconds', '-1')\n .option('--cors', 'Enable CORS', false)\n .action(async (port, options) => {\n const { cache, cors } = options\n const numericPort = parseInt(port)\n const numericCache = parseInt(cache)\n const httpServerOptions = [\n 'http-server',\n '--port', Number.isNaN(numericPort) ? '3000' : numericPort.toString(),\n '--cache', Number.isNaN(numericCache) ? '-1' : numericCache.toString()\n ]\n if (cors) httpServerOptions.push('--cors')\n spawn('npx', httpServerOptions, { stdio: 'inherit' })\n const onShutdown = () => {\n console.log('Exiting...')\n process.exit(0)\n }\n process.on('SIGINT', onShutdown)\n process.on('SIGTERM', onShutdown)\n })\n\nprogram.parse(process.argv)\n"],
|
|
5
|
+
"mappings": "AAAA,OAAS,SAAAA,MAAa,qBACtB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,qBAAqB,EAC1B,YAAY,6BAA6B,EACzC,SAAS,SAAU,QAAS,MAAM,EAClC,OAAO,wBAAyB,4BAA6B,IAAI,EACjE,OAAO,SAAU,cAAe,EAAK,EACrC,OAAO,MAAOC,EAAMC,IAAY,CAC/B,GAAM,CAAE,MAAAC,EAAO,KAAAC,CAAK,EAAIF,EAClBG,EAAc,SAASJ,CAAI,EAC3BK,EAAe,SAASH,CAAK,EAC7BI,EAAoB,CACxB,cACA,SAAU,OAAO,MAAMF,CAAW,EAAI,OAASA,EAAY,SAAS,EACpE,UAAW,OAAO,MAAMC,CAAY,EAAI,KAAOA,EAAa,SAAS,CACvE,EACIF,GAAMG,EAAkB,KAAK,QAAQ,EACzCR,EAAM,MAAOQ,EAAmB,CAAE,MAAO,SAAU,CAAC,EACpD,IAAMC,EAAa,IAAM,CACvB,QAAQ,IAAI,YAAY,EACxB,QAAQ,KAAK,CAAC,CAChB,EACA,QAAQ,GAAG,SAAUA,CAAU,EAC/B,QAAQ,GAAG,UAAWA,CAAU,CAClC,CAAC,EAEHR,EAAQ,MAAM,QAAQ,IAAI",
|
|
6
|
+
"names": ["spawn", "program", "port", "options", "cache", "cors", "numericPort", "numericCache", "httpServerOptions", "onShutdown"]
|
|
7
7
|
}
|
package/status/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import{exec as a}from"child_process";import{program as s}from"commander";s.name("@design-edito/status").description("Shorthand for git status with arguments forwarding").allowUnknownOption(!0).arguments("[args...]").action(i=>{let r=`git status ${i.join(" ")}`;a(r,(o,n,t)=>{o&&console.log(`
|
|
3
|
+
ERR
|
|
4
|
+
`,o),t&&console.log(`
|
|
5
|
+
stderr:
|
|
6
|
+
`,t),n&&console.log(`
|
|
7
|
+
stdout:
|
|
8
|
+
`,n)})});s.parse(process.argv);
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/status/index.ts"],
|
|
4
|
+
"sourcesContent": ["import { exec } from 'child_process'\nimport { program } from 'commander'\n\nprogram\n .name('@design-edito/status')\n .description('Shorthand for git status with arguments forwarding')\n .allowUnknownOption(true)\n .arguments('[args...]')\n .action((args: string[]) => {\n const cmd = `git status ${args.join(' ')}`\n\n exec(cmd, (error, stdout, stderr) => {\n if (error) console.log('\\nERR\\n', error)\n if (stderr) console.log('\\nstderr:\\n', stderr)\n if (stdout) console.log('\\nstdout:\\n', stdout)\n })\n })\n\nprogram.parse(process.argv)\n"],
|
|
5
|
+
"mappings": "AAAA,OAAS,QAAAA,MAAY,gBACrB,OAAS,WAAAC,MAAe,YAExBA,EACG,KAAK,sBAAsB,EAC3B,YAAY,oDAAoD,EAChE,mBAAmB,EAAI,EACvB,UAAU,WAAW,EACrB,OAAQC,GAAmB,CAC1B,IAAMC,EAAM,cAAcD,EAAK,KAAK,GAAG,CAAC,GAExCF,EAAKG,EAAK,CAACC,EAAOC,EAAQC,IAAW,CAC/BF,GAAO,QAAQ,IAAI;AAAA;AAAA,EAAWA,CAAK,EACnCE,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,EACzCD,GAAQ,QAAQ,IAAI;AAAA;AAAA,EAAeA,CAAM,CAC/C,CAAC,CACH,CAAC,EAEHJ,EAAQ,MAAM,QAAQ,IAAI",
|
|
6
|
+
"names": ["exec", "program", "args", "cmd", "error", "stdout", "stderr"]
|
|
7
|
+
}
|