@builder.io/mitosis-cli 0.3.1 → 0.3.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.
Files changed (1) hide show
  1. package/package.json +10 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/mitosis-cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "mitosis CLI",
5
5
  "types": "build/types/types.d.ts",
6
6
  "bin": {
@@ -8,19 +8,16 @@
8
8
  },
9
9
  "scripts": {
10
10
  "format": "prettier --loglevel warn --write \"**/*.{js,ts,tsx,json}\"",
11
- "clean-build": "tsc --build --clean tsconfig.build.json && rimraf ./dist",
12
- "compile": "tsc --build --verbose --pretty tsconfig.build.json",
11
+ "clean-build": "yarn compile --clean",
12
+ "compile": "tsc --build --pretty tsconfig.build.json",
13
13
  "tsc-alias": "tsc-alias -p tsconfig.build.json --verbose",
14
14
  "start": "concurrently --kill-others \"tsc --watch\" \"yarn tsc-alias --watch\"",
15
15
  "build": "yarn format && yarn clean-build && yarn compile && yarn tsc-alias",
16
16
  "fix-core-version": "./scripts/fix-core-version.sh",
17
- "remove-stableVersion": "./scripts/remove-stableVersion.sh",
18
- "release:dev": "yarn build && yarn run remove-stableVersion && yarn version prerelease && yarn npm publish --tag dev",
19
- "release:patch": "yarn build && yarn run remove-stableVersion && yarn version patch && yarn npm publish",
20
- "test": "vitest run",
21
17
  "test:watch": "vitest",
22
- "snapupdate": "vitest --update",
23
- "coverage": "vitest run --coverage"
18
+ "test:watch:update": "yarn test:watch --update",
19
+ "test": "yarn test:watch run",
20
+ "test:update": "yarn test --update"
24
21
  },
25
22
  "files": [
26
23
  "dist",
@@ -28,37 +25,26 @@
28
25
  ],
29
26
  "license": "MIT",
30
27
  "dependencies": {
31
- "@babel/core": "^7.17.8",
32
- "@builder.io/mitosis": "0.3.1",
33
- "@vue/compiler-sfc": "^3.1.5",
34
- "babel-preset-solid": "^1.3.13",
35
- "chalk": "^4.1.0",
28
+ "@builder.io/mitosis": "0.3.3",
36
29
  "debug": "^4.3.4",
37
30
  "dedent": "^0.7.0",
38
31
  "esbuild": "^0.12.16",
39
32
  "fast-glob": "^3.2.11",
40
33
  "fp-ts": "^2.12.2",
41
34
  "fs-extra": "^9.1.0",
42
- "globby": "^11.0.2",
43
35
  "gluegun": "latest",
44
- "html-minifier": "^4.0.0",
45
- "json5": "^2.2.1",
46
36
  "lodash": "^4.17.21",
47
- "micromatch": "^4.0.4",
48
- "parse5": "^3.0.3",
49
37
  "prettier": "^2.6.1",
50
- "rimraf": "^5.0.5",
51
- "ts-morph": "^19.0.0",
52
- "vue-template-es2015-compiler": "^1.9.1",
53
- "vue-template-validator": "^1.1.5"
38
+ "ts-morph": "^19.0.0"
54
39
  },
55
40
  "devDependencies": {
56
41
  "@types/debug": "^4.1.7",
57
42
  "@types/fs-extra": "^9.0.13",
58
43
  "@types/lodash": "^4.14.180",
59
- "@types/micromatch": "^4.0.2",
60
44
  "@types/node": "^12.7.11",
61
45
  "concurrently": "^8.2.2",
46
+ "nx": "^19.0.8",
47
+ "nx-cloud": "^19.0.0",
62
48
  "ts-node": "^8.4.1",
63
49
  "tsc-alias": "^1.8.8",
64
50
  "typescript": "^5.3.2",