@yup/taro-ui 0.0.2 → 0.0.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.
- package/es/index.js +1 -1
- package/package.json +8 -11
package/es/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import './global.css'
|
|
2
2
|
export{default as Button}from'./components/button/index.js';export{default as Checkbox}from'./components/checkbox/index.js';export{default as Input}from'./components/input/index.js';export{default as Radio}from'./components/radio/index.js';export{default as Form}from'./components/form/index.js';import'./components/toast/index.js';export{default as Toast}from'./components/toast/toast.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yup/taro-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "鱼泡 Taro UI组件库",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "es/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"build:components": "gulp && rollup -c && cpx 'types/**/*' es",
|
|
19
19
|
"preview": "dumi preview",
|
|
20
20
|
"lint": "eslint .",
|
|
21
|
-
"
|
|
21
|
+
"postinstall": "husky install && dumi setup",
|
|
22
22
|
"release": "npm run build:components && npm publish",
|
|
23
23
|
"release:patch": "npm version patch && npm run build:components && npm publish"
|
|
24
24
|
},
|
|
@@ -110,18 +110,15 @@
|
|
|
110
110
|
"typescript-eslint": "^8.2.0"
|
|
111
111
|
},
|
|
112
112
|
"peerDependencies": {
|
|
113
|
+
"@tarojs/components": "3.6.37",
|
|
114
|
+
"@tarojs/taro": "3.6.37",
|
|
113
115
|
"classnames": "^2.3.2",
|
|
114
116
|
"react": "^18.2.0",
|
|
115
|
-
"react-dom": "^18.2.0"
|
|
116
|
-
"@tarojs/taro": "3.6.37",
|
|
117
|
-
"@tarojs/components": "3.6.37",
|
|
118
|
-
"@yup/taro-checkbox": "^0.9.0",
|
|
119
|
-
"@yup/taro-form": "0.9.1",
|
|
120
|
-
"@yup/taro-radio": "^0.9.0"
|
|
117
|
+
"react-dom": "^18.2.0"
|
|
121
118
|
},
|
|
122
119
|
"dependencies": {
|
|
123
|
-
"@yup/taro-checkbox": "^0.9.
|
|
124
|
-
"@yup/taro-form": "0.9.1",
|
|
125
|
-
"@yup/taro-radio": "^0.9.
|
|
120
|
+
"@yup/taro-checkbox": "^0.9.1",
|
|
121
|
+
"@yup/taro-form": "^0.9.1",
|
|
122
|
+
"@yup/taro-radio": "^0.9.1"
|
|
126
123
|
}
|
|
127
124
|
}
|