vite-plugin-taro 0.0.1 → 0.0.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/README.md +5 -6
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -115,12 +115,11 @@ Run `pnpm prepare:taro` to regenerate the patched packages from upstream tarball
|
|
|
115
115
|
|
|
116
116
|
```sh
|
|
117
117
|
pnpm install
|
|
118
|
-
pnpm
|
|
119
|
-
pnpm
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
pnpm --
|
|
123
|
-
pnpm --filter vite-plugin-taro pack:dry
|
|
118
|
+
pnpm publish:dry
|
|
119
|
+
pnpm publish:all
|
|
120
|
+
|
|
121
|
+
# If npm 2FA is enabled:
|
|
122
|
+
pnpm publish:all -- --otp 123456
|
|
124
123
|
```
|
|
125
124
|
|
|
126
125
|
The package publishes built ESM JavaScript and `.d.ts` files from `dist`.
|
package/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-taro",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Vite 8 plugin for building one React/Taro codebase for WeChat Mini Program and H5 targets.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/sep2/vite-plugin-taro.git",
|
|
9
|
+
"directory": "packages/vite-plugin-taro"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/sep2/vite-plugin-taro/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/sep2/vite-plugin-taro/tree/main/packages/vite-plugin-taro#readme",
|
|
6
15
|
"main": "./dist/vite.js",
|
|
7
16
|
"module": "./dist/vite.js",
|
|
8
17
|
"types": "./dist/vite.d.ts",
|
|
@@ -73,8 +82,8 @@
|
|
|
73
82
|
"babel-plugin-transform-taroapi": "^4.2.0",
|
|
74
83
|
"tailwindcss": "^4.3.0",
|
|
75
84
|
"weapp-tailwindcss": "^5.0.5",
|
|
76
|
-
"@tarojs/
|
|
77
|
-
"@tarojs/react": "npm:vite-plugin-taro-react@4.2.0-react19.
|
|
85
|
+
"@tarojs/react": "npm:vite-plugin-taro-react@4.2.0-react19.1",
|
|
86
|
+
"@tarojs/plugin-framework-react": "npm:vite-plugin-taro-plugin-framework-react@4.2.0-react19.1"
|
|
78
87
|
},
|
|
79
88
|
"peerDependencies": {
|
|
80
89
|
"react": "^19.0.0",
|