@yup/taro-ui 0.0.2 → 0.0.4

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 (2) hide show
  1. package/es/index.js +1 -1
  2. package/package.json +7 -11
package/es/index.js CHANGED
@@ -1,2 +1,2 @@
1
- import '../global.css'
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.2",
3
+ "version": "0.0.4",
4
4
  "description": "鱼泡 Taro UI组件库",
5
5
  "type": "module",
6
6
  "main": "es/index.js",
@@ -18,7 +18,6 @@
18
18
  "build:components": "gulp && rollup -c && cpx 'types/**/*' es",
19
19
  "preview": "dumi preview",
20
20
  "lint": "eslint .",
21
- "prepare": "husky install && dumi setup",
22
21
  "release": "npm run build:components && npm publish",
23
22
  "release:patch": "npm version patch && npm run build:components && npm publish"
24
23
  },
@@ -110,18 +109,15 @@
110
109
  "typescript-eslint": "^8.2.0"
111
110
  },
112
111
  "peerDependencies": {
112
+ "@tarojs/components": "3.6.37",
113
+ "@tarojs/taro": "3.6.37",
113
114
  "classnames": "^2.3.2",
114
115
  "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"
116
+ "react-dom": "^18.2.0"
121
117
  },
122
118
  "dependencies": {
123
- "@yup/taro-checkbox": "^0.9.0",
124
- "@yup/taro-form": "0.9.1",
125
- "@yup/taro-radio": "^0.9.0"
119
+ "@yup/taro-checkbox": "^0.9.1",
120
+ "@yup/taro-form": "^0.9.1",
121
+ "@yup/taro-radio": "^0.9.1"
126
122
  }
127
123
  }