ht-components-taro-v3 1.0.2 → 1.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.
- package/dist/cjs/index.css +1 -0
- package/dist/cjs/index.js +2553 -0
- package/dist/esm/index.css +1 -0
- package/dist/esm/index.js +2544 -0
- package/package.json +37 -57
- package/.eslintrc +0 -3
- package/babel.config.js +0 -10
- package/componentsDist/index.js +0 -1
- package/project.config.json +0 -13
package/package.json
CHANGED
|
@@ -1,67 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ht-components-taro-v3",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "基于 Rollup 构建的 Taro 多端组件库",
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build
|
|
12
|
-
"
|
|
13
|
-
"build:swan": "taro build --type swan",
|
|
14
|
-
"build:alipay": "taro build --type alipay",
|
|
15
|
-
"build:tt": "taro build --type tt",
|
|
16
|
-
"build:h5": "taro build --type h5",
|
|
17
|
-
"build:rn": "taro build --type rn",
|
|
18
|
-
"build:qq": "taro build --type qq",
|
|
19
|
-
"build:jd": "taro build --type jd",
|
|
20
|
-
"build:quickapp": "taro build --type quickapp",
|
|
21
|
-
"dev:weapp": "npm run build:weapp -- --watch",
|
|
22
|
-
"dev:swan": "npm run build:swan -- --watch",
|
|
23
|
-
"dev:alipay": "npm run build:alipay -- --watch",
|
|
24
|
-
"dev:tt": "npm run build:tt -- --watch",
|
|
25
|
-
"dev:h5": "npm run build:h5 -- --watch",
|
|
26
|
-
"dev:rn": "npm run build:rn -- --watch",
|
|
27
|
-
"dev:qq": "npm run build:qq -- --watch",
|
|
28
|
-
"dev:jd": "npm run build:jd -- --watch",
|
|
29
|
-
"dev:quickapp": "npm run build:quickapp -- --watch"
|
|
11
|
+
"build": "rollup -c",
|
|
12
|
+
"prepublishOnly": "npm run build"
|
|
30
13
|
},
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"Android >= 4.1",
|
|
34
|
-
"ios >= 8"
|
|
35
|
-
],
|
|
36
|
-
"author": "",
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@babel/runtime": "^7.7.7",
|
|
39
|
-
"@tarojs/cli": "^3.0.17",
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"@tarojs/taro": "3.0.17",
|
|
40
16
|
"@tarojs/components": "3.0.17",
|
|
41
17
|
"@tarojs/react": "3.0.17",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"@tarojs/taro-loader": "^3.0.17",
|
|
45
|
-
"css-loader": "^7.1.2",
|
|
46
|
-
"less-loader": "^12.3.0",
|
|
47
|
-
"mini-css-extract-plugin": "^2.9.4",
|
|
48
|
-
"react": "^16.10.0",
|
|
49
|
-
"react-dom": "^16.10.0",
|
|
50
|
-
"webpack": "^5.104.1",
|
|
51
|
-
"webpack-cli": "^6.0.1"
|
|
18
|
+
"react": "16.10.0",
|
|
19
|
+
"react-dom": "16.10.0"
|
|
52
20
|
},
|
|
53
21
|
"devDependencies": {
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@babel/
|
|
58
|
-
"@
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
22
|
+
"@babel/core": "^7.20.0",
|
|
23
|
+
"@babel/plugin-transform-runtime": "^7.28.5",
|
|
24
|
+
"@babel/preset-env": "^7.20.0",
|
|
25
|
+
"@babel/preset-react": "7.8.3",
|
|
26
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
27
|
+
"@rollup/plugin-commonjs": "^24.0.1",
|
|
28
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
29
|
+
"core-js": "^3.26.0",
|
|
30
|
+
"postcss": "^8.4.31",
|
|
31
|
+
"rollup": "^2.79.2",
|
|
32
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
33
|
+
"sass": "^1.44.0"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"taro",
|
|
37
|
+
"rollup",
|
|
38
|
+
"组件库",
|
|
39
|
+
"小程序",
|
|
40
|
+
"H5"
|
|
41
|
+
],
|
|
42
|
+
"author": "",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@babel/runtime": "^7.20.0"
|
|
66
46
|
}
|
|
67
47
|
}
|
package/.eslintrc
DELETED
package/babel.config.js
DELETED
package/componentsDist/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r(require("@tarojs/runtime"),require("react"),require("react-dom"));else if("function"==typeof define&&define.amd)define(["@tarojs/runtime","react","react-dom"],r);else{var t="object"==typeof exports?r(require("@tarojs/runtime"),require("react"),require("react-dom")):r(e["@tarojs/runtime"],e.react,e["react-dom"]);for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(self,function(e,r,t){return function(){"use strict";var o={155:function(e){e.exports=r},320:function(r){r.exports=e},338:function(e,r,t){t.r(r);var o=t(320),n=t(338),u=t(155),i=t(514),f=t.n(i),c=void 0;o.window.__taroAppConfig=c,App((0,o.createReactApp)(n.default,u,f(),c))},514:function(e){e.exports=t}},n={};function u(e){var r=n[e];if(void 0!==r)return r.exports;var t=n[e]={exports:{}};return o[e](t,t.exports,u),t.exports}return u.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return u.d(r,{a:r}),r},u.d=function(e,r){for(var t in r)u.o(r,t)&&!u.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},u.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},u.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u(338)}()});
|
package/project.config.json
DELETED