@lionweb/cli 0.7.0-beta.0 → 0.7.0-beta.2
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/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/cli",
|
|
3
|
-
"version": "0.7.0-beta.
|
|
3
|
+
"version": "0.7.0-beta.2",
|
|
4
4
|
"description": "LionWeb CLI for {Java|Type}Script",
|
|
5
5
|
"bin": {
|
|
6
6
|
"lionweb-cli": "./dist/lionweb-cli.js"
|
|
@@ -15,21 +15,23 @@
|
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
|
|
17
17
|
},
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"@lionweb/core": "0.7.0-beta.0",
|
|
20
|
-
"@lionweb/json-diff": "0.7.0-beta.0",
|
|
21
|
-
"@lionweb/utilities": "0.7.0-beta.0",
|
|
22
|
-
"@lionweb/validation": "0.7.0-beta.0"
|
|
23
|
-
},
|
|
24
18
|
"scripts": {
|
|
25
19
|
"clean": "rm -rf dist/ node_modules/ lionweb-cli-*.tgz",
|
|
26
20
|
"build": "tsc",
|
|
27
21
|
"lint": "eslint src",
|
|
28
22
|
"test": "node dist/lionweb-cli.js",
|
|
29
|
-
"pre-release
|
|
30
|
-
"prerelease": "npm run pre-release
|
|
31
|
-
"release": "npm publish",
|
|
32
|
-
"prerelease-beta": "npm run pre-release
|
|
33
|
-
"release-beta": "npm publish --tag beta"
|
|
23
|
+
"prep:pre-release": "npm run clean && npm install && npm run build",
|
|
24
|
+
"prerelease-alpha": "npm run prep:pre-release",
|
|
25
|
+
"release-alpha": "npm publish --tag alpha",
|
|
26
|
+
"prerelease-beta": "npm run prep:pre-release",
|
|
27
|
+
"release-beta": "npm publish --tag beta",
|
|
28
|
+
"prerelease": "npm run prep:pre-release",
|
|
29
|
+
"release": "npm publish"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@lionweb/core": "0.7.0-beta.2",
|
|
33
|
+
"@lionweb/json-diff": "0.7.0-beta.2",
|
|
34
|
+
"@lionweb/utilities": "0.7.0-beta.2",
|
|
35
|
+
"@lionweb/validation": "0.7.0-beta.2"
|
|
34
36
|
}
|
|
35
37
|
}
|