@tarojs/taroize 4.0.0-canary.7 → 4.0.0-canary.9
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/LICENSE +14 -0
- package/package.json +4 -11
package/LICENSE
CHANGED
|
@@ -158,3 +158,17 @@ MIT (stencil-vue2-output-target):
|
|
|
158
158
|
The following files embed [stencil-vue2-output-target](https://github.com/diondree/stencil-vue2-output-target) MIT:
|
|
159
159
|
`/packages/taro-components-library-vue2/src/vue-component-lib/utils.ts`
|
|
160
160
|
See `/LICENSE` for details of the license.
|
|
161
|
+
|
|
162
|
+
==================
|
|
163
|
+
|
|
164
|
+
MIT (weui):
|
|
165
|
+
The following files embed [stencil-vue2-output-target](https://github.com/Tencent/weui) MIT:
|
|
166
|
+
`/packages/taro-components/src/components/*.scss`
|
|
167
|
+
See `/LICENSE.txt` for details of the license.
|
|
168
|
+
|
|
169
|
+
==================
|
|
170
|
+
|
|
171
|
+
Apache-2.0 (intersection-observer):
|
|
172
|
+
The following files embed [intersection-observer](https://github.com/GoogleChromeLabs/intersection-observer) Apache-2.0:
|
|
173
|
+
`/packages/taro-api/src/polyfill/intersection-observer.ts`
|
|
174
|
+
See `/LICENSE.txt` for details of the license.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/taroize",
|
|
3
|
-
"version": "4.0.0-canary.
|
|
3
|
+
"version": "4.0.0-canary.9",
|
|
4
4
|
"description": "转换原生微信小程序代码为 Taro 代码",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -50,21 +50,14 @@
|
|
|
50
50
|
"@babel/template": "7.21.9",
|
|
51
51
|
"@babel/traverse": "^7.21.4",
|
|
52
52
|
"@babel/types": "^7.23.0",
|
|
53
|
-
"babel-core": "^6.26.3",
|
|
54
|
-
"babel-generator": "^6.26.1",
|
|
55
|
-
"babel-template": "^6.26.0",
|
|
56
|
-
"babel-traverse": "^6.26.0",
|
|
57
|
-
"babel-types": "^6.26.0",
|
|
58
|
-
"babylon": "^6.18.0",
|
|
59
|
-
"better-babel-generator": "6.26.1",
|
|
60
53
|
"himalaya-wxml": "^1.1.0",
|
|
61
54
|
"html": "^1.0.0",
|
|
62
|
-
"lodash": "^4.17.21"
|
|
55
|
+
"lodash": "^4.17.21",
|
|
56
|
+
"@tarojs/helper": "4.0.0-canary.9"
|
|
63
57
|
},
|
|
64
58
|
"devDependencies": {
|
|
65
59
|
"@babel/core": "^7.21.8",
|
|
66
60
|
"@types/babel__traverse": "^7.18.3",
|
|
67
|
-
"@types/babel-traverse": "6.25.10",
|
|
68
61
|
"jest": "^29.7.0",
|
|
69
62
|
"ts-jest": "^29.0.5",
|
|
70
63
|
"typescript": "^4.7.4"
|
|
@@ -75,7 +68,7 @@
|
|
|
75
68
|
"lint": "eslint src --ext .js --ext .jsx --ext .ts --ext .tsx",
|
|
76
69
|
"format": "prettier --write \"{src, __tests__}/**/*.{ts,tsx,js,jsx}\" && eslint src __tests__ --ext .js --ext .jsx --ext .ts --ext .tsx --fix",
|
|
77
70
|
"test": "jest",
|
|
78
|
-
"test:ci": "cross-env NODE_ENV=test jest --ci -i",
|
|
71
|
+
"test:ci": "cross-env NODE_ENV=test jest --ci -i --coverage --silent",
|
|
79
72
|
"test:clear": "jest --clearCache",
|
|
80
73
|
"test:coverage": "jest --coverage",
|
|
81
74
|
"updateSnapshot": "jest --updateSnapshot"
|