@slingr/cli 0.0.2 → 0.0.3
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/oclif.manifest.json +1 -1
- package/package.json +4 -5
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slingr/cli",
|
|
3
3
|
"description": "Slingr CLI tool for creating and managing Slingr applications",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
"inquirer": "^8.2.7",
|
|
22
22
|
"js-yaml": "^4.1.0",
|
|
23
23
|
"mocha": "^11.7.4",
|
|
24
|
-
"reflect-metadata": "^0.2.2"
|
|
25
|
-
"@slingr/framework": "0.0.1"
|
|
24
|
+
"reflect-metadata": "^0.2.2"
|
|
26
25
|
},
|
|
27
26
|
"devDependencies": {
|
|
28
27
|
"@eslint/compat": "^1",
|
|
@@ -88,7 +87,7 @@
|
|
|
88
87
|
"build": "shx rm -rf dist && tsc -b && shx cp -r src/templates dist/ && shx cp -r src/scripts dist/",
|
|
89
88
|
"lint": "eslint",
|
|
90
89
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
91
|
-
"prepack": "oclif manifest && oclif readme",
|
|
90
|
+
"prepack": "npm run build && oclif manifest && oclif readme",
|
|
92
91
|
"setup": "npm run build && npm run prepack && npm link",
|
|
93
92
|
"test": "mocha -r ts-node/register --timeout 60000 --forbid-only \"test/**/*.test.ts\"",
|
|
94
93
|
"coverage": "nyc --reporter=text --reporter=text-summary --reporter=json-summary mocha --forbid-only \"test/**/*.test.ts\"",
|
|
@@ -115,4 +114,4 @@
|
|
|
115
114
|
"all": true,
|
|
116
115
|
"cache": false
|
|
117
116
|
}
|
|
118
|
-
}
|
|
117
|
+
}
|