@tarojs/helper 3.7.0-canary.0 → 3.7.0-canary.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/helper",
3
- "version": "3.7.0-canary.0",
3
+ "version": "3.7.0-canary.2",
4
4
  "description": "Taro Helper",
5
5
  "main": "index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,24 +24,28 @@
24
24
  },
25
25
  "homepage": "https://github.com/NervJS/taro#readme",
26
26
  "dependencies": {
27
- "@babel/core": "^7.14.5",
28
- "@babel/parser": "^7.14.5",
29
- "@babel/plugin-proposal-decorators": "^7.14.5",
30
- "@babel/plugin-proposal-object-rest-spread": "^7.14.5",
31
- "@babel/plugin-transform-runtime": "^7.14.5",
32
- "@babel/preset-env": "^7.14.5",
33
- "@babel/preset-typescript": "^7.14.5",
34
- "@babel/register": "^7.14.5",
35
- "@babel/runtime": "^7.14.5",
36
- "@babel/traverse": "^7.14.5",
37
- "@swc/core": "1.3.23",
38
- "@swc/register": "^0.1.10",
27
+ "@babel/core": "^7.20.0",
28
+ "@babel/generator": "^7.20.0",
29
+ "@babel/parser": "^7.20.0",
30
+ "@babel/plugin-proposal-decorators": "^7.20.0",
31
+ "@babel/plugin-proposal-object-rest-spread": "^7.20.0",
32
+ "@babel/plugin-transform-runtime": "^7.20.0",
33
+ "@babel/preset-env": "^7.20.0",
34
+ "@babel/preset-typescript": "^7.20.0",
35
+ "@babel/register": "^7.20.0",
36
+ "@babel/runtime": "^7.20.0",
37
+ "@babel/traverse": "^7.20.0",
38
+ "@babel/types": "^7.23.0",
39
+ "@swc/core": "1.3.96",
40
+ "@swc/register": "0.1.10",
39
41
  "ansi-escapes": "^4.3.2",
40
42
  "chalk": "3.0.0",
41
43
  "chokidar": "^3.3.1",
42
44
  "cross-spawn": "^7.0.3",
43
45
  "debug": "4.3.4",
44
- "esbuild": "^0.14.27",
46
+ "dotenv": "^16.0.3",
47
+ "dotenv-expand": "^9.0.0",
48
+ "esbuild": "~0.19.5",
45
49
  "find-yarn-workspace-root": "2.0.0",
46
50
  "fs-extra": "^8.0.1",
47
51
  "lodash": "^4.17.21",
@@ -51,7 +55,9 @@
51
55
  "yauzl": "2.10.0"
52
56
  },
53
57
  "devDependencies": {
54
- "babel-jest": "^29.5.0",
58
+ "@types/babel__template": "^7.4.2",
59
+ "@types/babel__traverse": "^7.20.2",
60
+ "babel-jest": "^29.7.0",
55
61
  "jest": "^29.3.1",
56
62
  "jest-cli": "^29.3.1",
57
63
  "jest-environment-node": "^29.5.0",
@@ -60,7 +66,7 @@
60
66
  },
61
67
  "scripts": {
62
68
  "build": "run-s clean prod",
63
- "clean": "rimraf dist",
69
+ "clean": "rimraf --impl=move-remove dist",
64
70
  "dev": "tsc -w",
65
71
  "prod": "tsc",
66
72
  "test": "jest --collectCoverage",
@@ -0,0 +1,5 @@
1
+ # These command aliases are not final, may change
2
+ [alias]
3
+ # Alias to build actual plugin binary for the specified target.
4
+ build-wasi = "build --target wasm32-wasi"
5
+ build-wasm32 = "build --target wasm32-unknown-unknown"