@builder.io/mitosis-cli 0.0.83 → 0.0.85
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 +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/mitosis-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.85",
|
|
4
4
|
"description": "mitosis CLI",
|
|
5
5
|
"types": "build/types/types.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -10,8 +10,9 @@
|
|
|
10
10
|
"format": "prettier --loglevel warn --write \"**/*.{js,ts,tsx,json}\"",
|
|
11
11
|
"clean-build": "tsc --build --clean tsconfig.build.json && rm -rf ./dist",
|
|
12
12
|
"compile": "tsc --build --verbose --pretty tsconfig.build.json",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
13
|
+
"tsc-alias": "tsc-alias -p tsconfig.build.json --verbose",
|
|
14
|
+
"start": "concurrently --kill-others \"tsc --watch\" \"yarn tsc-alias --watch\"",
|
|
15
|
+
"build": "yarn format && yarn clean-build && yarn compile && yarn tsc-alias",
|
|
15
16
|
"prepublishOnly": "yarn build",
|
|
16
17
|
"remove-stableVersion": "./scripts/remove-stableVersion.sh",
|
|
17
18
|
"release:dev": "yarn build && yarn run remove-stableVersion && yarn version prerelease && yarn npm publish --tag dev",
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
"license": "MIT",
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"@babel/core": "^7.17.8",
|
|
31
|
-
"@builder.io/mitosis": "0.0.
|
|
32
|
+
"@builder.io/mitosis": "0.0.126",
|
|
32
33
|
"@vue/compiler-sfc": "^3.1.5",
|
|
33
34
|
"babel-preset-solid": "^1.3.13",
|
|
34
35
|
"chalk": "^4.1.0",
|
|
@@ -56,9 +57,11 @@
|
|
|
56
57
|
"@types/lodash": "^4.14.180",
|
|
57
58
|
"@types/micromatch": "^4.0.2",
|
|
58
59
|
"@types/node": "^12.7.11",
|
|
60
|
+
"concurrently": "^8.2.2",
|
|
59
61
|
"ts-node": "^8.4.1",
|
|
62
|
+
"tsc-alias": "^1.8.8",
|
|
60
63
|
"typescript": "^4.8.4",
|
|
61
64
|
"vite": "^3.2.2",
|
|
62
|
-
"vitest": "^0.
|
|
65
|
+
"vitest": "^0.34.6"
|
|
63
66
|
}
|
|
64
67
|
}
|