@tendo-sect/test-npm-publish-package 0.0.27 → 0.0.31
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/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import cac from "cac";
|
|
|
2
2
|
|
|
3
3
|
//#region package.json
|
|
4
4
|
var name = "@tendo-sect/test-npm-publish-package";
|
|
5
|
-
var version = "0.0.
|
|
5
|
+
var version = "0.0.31";
|
|
6
6
|
|
|
7
7
|
//#endregion
|
|
8
8
|
//#region src/cli.ts
|
|
@@ -12,6 +12,10 @@ cli.help();
|
|
|
12
12
|
cli.version(version);
|
|
13
13
|
cli.parse();
|
|
14
14
|
|
|
15
|
+
//#endregion
|
|
16
|
+
//#region src/index.ts
|
|
17
|
+
for (const arrayKey in array);
|
|
18
|
+
|
|
15
19
|
//#endregion
|
|
16
20
|
export { };
|
|
17
21
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":[],"sources":["../package.json","../src/cli.ts"],"sourcesContent":["","import cac from \"cac\"\nimport { name, version } from \"../package.json\"\n\nconst cli = cac(name)\n\ncli.command(\"\")\n .option(\"--test -t\", \"arg description\", { default: false })\n .action(() => {\n })\n\ncli.help()\ncli.version(version)\ncli.parse()\n"],"mappings":";;;;;;;;ACGA,MAAM,MAAM,IAAI,KAAK;AAErB,IAAI,QAAQ,GAAG,CACV,OAAO,aAAa,mBAAmB,EAAE,SAAS,OAAO,CAAC,CAC1D,aAAa,GACZ;AAEN,IAAI,MAAM;AACV,IAAI,QAAQ,QAAQ;AACpB,IAAI,OAAO"}
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../package.json","../src/cli.ts","../src/index.ts"],"sourcesContent":["","import cac from \"cac\"\nimport { name, version } from \"../package.json\"\n\nconst cli = cac(name)\n\ncli.command(\"\")\n .option(\"--test -t\", \"arg description\", { default: false })\n .action(() => {\n })\n\ncli.help()\ncli.version(version)\ncli.parse()\n","export * from \"./cli\"\n\nfor (const arrayKey in array) {\n continue\n}"],"mappings":";;;;;;;;ACGA,MAAM,MAAM,IAAI,KAAK;AAErB,IAAI,QAAQ,GAAG,CACV,OAAO,aAAa,mBAAmB,EAAE,SAAS,OAAO,CAAC,CAC1D,aAAa,GACZ;AAEN,IAAI,MAAM;AACV,IAAI,QAAQ,QAAQ;AACpB,IAAI,OAAO;;;;ACVX,KAAK,MAAM,YAAY"}
|
package/package.json
CHANGED