hereya-cli 0.100.3 → 0.100.5
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 +66 -66
- package/bin/check-node.cjs +32 -0
- package/bin/dev.cjs +22 -0
- package/bin/dev.cmd +1 -1
- package/bin/run.cjs +14 -0
- package/bin/run.cmd +1 -1
- package/dist/executor/delegating.js +39 -1
- package/oclif.manifest.json +598 -598
- package/package.json +3 -3
- /package/bin/{dev.js → dev-impl.mjs} +0 -0
- /package/bin/{run.js → run.mjs} +0 -0
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hereya-cli",
|
|
3
3
|
"description": "Infrastructure as Package",
|
|
4
|
-
"version": "0.100.
|
|
4
|
+
"version": "0.100.5",
|
|
5
5
|
"author": "Hereya Developers",
|
|
6
6
|
"bin": {
|
|
7
|
-
"hereya": "./bin/run.
|
|
7
|
+
"hereya": "./bin/run.cjs"
|
|
8
8
|
},
|
|
9
9
|
"bugs": "https://github.com/hereya/hereya-cli/issues",
|
|
10
10
|
"dependencies": {
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"repository": "hereya/hereya-cli",
|
|
118
118
|
"scripts": {
|
|
119
119
|
"generate": "npx oclif generate command $COMMAND && shx mkdir src/commands/$COMMAND && shx mv src/commands/$COMMAND.ts src/commands/$COMMAND/index.ts && shx mv test/commands/$COMMAND.test.ts src/commands/$COMMAND/index.test.ts && shx rm -rf test",
|
|
120
|
-
"dev": "./bin/dev.
|
|
120
|
+
"dev": "node ./bin/dev.cjs",
|
|
121
121
|
"build": "shx rm -rf dist && tsc -b",
|
|
122
122
|
"lint": "eslint .",
|
|
123
123
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
File without changes
|
/package/bin/{run.js → run.mjs}
RENAMED
|
File without changes
|