@builder.io/mitosis-cli 0.0.13-4 → 0.0.13-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/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/mitosis-cli",
|
|
3
|
-
"version": "0.0.13-
|
|
3
|
+
"version": "0.0.13-5",
|
|
4
4
|
"description": "mitosis CLI",
|
|
5
5
|
"types": "build/types/types.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -15,8 +15,9 @@
|
|
|
15
15
|
"copy-templates": "bash -c 'if [ -e ./src/templates ]; then cp -a ./src/templates ./dist/; fi'",
|
|
16
16
|
"build": "yarn format && yarn clean-build && yarn compile && yarn copy-templates",
|
|
17
17
|
"prepublishOnly": "yarn build",
|
|
18
|
-
"
|
|
19
|
-
"release:
|
|
18
|
+
"remove-stableVersion": "./scripts/remove-stableVersion.sh",
|
|
19
|
+
"release:dev": "yarn build && yarn run remove-stableVersion && yarn version prerelease && ALLOW_PUBLISH=true yarn npm publish --tag dev",
|
|
20
|
+
"release:patch": "yarn build && yarn run remove-stableVersion && yarn version patch && yarn npm publish",
|
|
20
21
|
"test": "jest",
|
|
21
22
|
"watch": "jest --watch",
|
|
22
23
|
"snapupdate": "jest --updateSnapshot",
|
|
@@ -35,10 +36,12 @@
|
|
|
35
36
|
"chalk": "^4.1.0",
|
|
36
37
|
"dedent": "^0.7.0",
|
|
37
38
|
"esbuild": "^0.12.16",
|
|
39
|
+
"fast-glob": "^3.2.11",
|
|
38
40
|
"fs-extra": "^9.1.0",
|
|
39
41
|
"globby": "^11.0.2",
|
|
40
42
|
"gluegun": "latest",
|
|
41
43
|
"html-minifier": "^4.0.0",
|
|
44
|
+
"json5": "^2.2.1",
|
|
42
45
|
"lodash": "^4.17.21",
|
|
43
46
|
"micromatch": "^4.0.4",
|
|
44
47
|
"parse5": "^3.0.3",
|
|
@@ -57,5 +60,5 @@
|
|
|
57
60
|
"ts-node": "^8.4.1",
|
|
58
61
|
"typescript": "^4.5.4"
|
|
59
62
|
},
|
|
60
|
-
"stableVersion": "0.0.13-
|
|
63
|
+
"stableVersion": "0.0.13-4"
|
|
61
64
|
}
|