cloud-business 0.1.132 → 0.1.133-1
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/cloud-business.js +1 -0
- package/cloud-business.min.js +1 -0
- package/package.json +1 -131
- package/.babelrc +0 -22
- package/.idea/cloud-business.iml +0 -8
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -775
- package/LICENSE +0 -21
- package/README.md +0 -2
- package/assets.json +0 -132
- package/dist/cloud-business.esm.js +0 -1
- package/dist/cloud-business.js +0 -1
- package/dist/cloud-business.min.js +0 -1
- package/dist/package.json +0 -131
- package/jsconfig.json +0 -13
- package/typings.d.ts +0 -2
- /package/{dist/cloud-business.css → cloud-business.css} +0 -0
- /package/{dist/cloud-business.min.css → cloud-business.min.css} +0 -0
package/package.json
CHANGED
|
@@ -1,131 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "cloud-business",
|
|
3
|
-
"version": "0.1.132",
|
|
4
|
-
"description": "数据赢家 react 版本业务组件",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"gen:index": "node ./scripts/generate-index.js",
|
|
7
|
-
"gen:index:dev": "node ./scripts/generate-index.js --dev",
|
|
8
|
-
"gen:doc": "node ./scripts/generate-doc.js",
|
|
9
|
-
"start": "rimraf dist/* && npm run gen:index:dev && father-build --dev && dumi dev",
|
|
10
|
-
"site": "npm run gen:index:dev && dumi build",
|
|
11
|
-
"docs:build": "dumi build",
|
|
12
|
-
"docs:deploy": "gh-pages -d docs-dist",
|
|
13
|
-
"build": "npm run gen:index && rimraf dist/* && father-build",
|
|
14
|
-
"watch": "father-build --watch",
|
|
15
|
-
"deploy": "npm run docs:build && npm run docs:deploy",
|
|
16
|
-
"release": "npm run build && npm publish",
|
|
17
|
-
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
|
|
18
|
-
"test": "umi-test",
|
|
19
|
-
"test:coverage": "umi-test --coverage",
|
|
20
|
-
"postversion": "dumi assets",
|
|
21
|
-
"lint": "eslint ./src --ext .js,.jsx",
|
|
22
|
-
"umi-lint": "umi-lint --eslint.ext='.js,jsx' ./src",
|
|
23
|
-
"cli-version": "node ./scripts/generate-version.js",
|
|
24
|
-
"version": "npm run build && npm publish dist",
|
|
25
|
-
"precommit": "umi-lint --staged --eslint --stylelint --prettier --fix"
|
|
26
|
-
},
|
|
27
|
-
"dumiAssets": "assets.json",
|
|
28
|
-
"main": "cloud-business.js",
|
|
29
|
-
"module": "dist/index.esm.js",
|
|
30
|
-
"typings": "dist/index.d.ts",
|
|
31
|
-
"source": "src/index.js",
|
|
32
|
-
"gitHooks": {
|
|
33
|
-
"pre-commit": "lint-staged"
|
|
34
|
-
},
|
|
35
|
-
"jest": {
|
|
36
|
-
"moduleNameMapper": {
|
|
37
|
-
"^@utils(.*)$": "<rootDir>/src/utils$1",
|
|
38
|
-
"^@contexts(.*)$": "<rootDir>/src/contexts$1",
|
|
39
|
-
"^@src(.*)$": "<rootDir>/src/$1"
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"lint-staged": {
|
|
43
|
-
"*.{js,jsx,less,md,json}": [
|
|
44
|
-
"prettier --write"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"repository": "https://github.com/ShuyunFF2E/cloud-business.git",
|
|
48
|
-
"author": "shuyunfe <shuyunfe@shuyun.com>",
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@babel/cli": "^7.14.8",
|
|
51
|
-
"@babel/core": "^7.15.0",
|
|
52
|
-
"@babel/eslint-parser": "^7.15.0",
|
|
53
|
-
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
54
|
-
"@babel/plugin-proposal-decorators": "^7.14.5",
|
|
55
|
-
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
|
|
56
|
-
"@babel/plugin-proposal-function-sent": "^7.14.5",
|
|
57
|
-
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
|
|
58
|
-
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
|
|
59
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
60
|
-
"@babel/plugin-transform-runtime": "^7.15.0",
|
|
61
|
-
"@babel/preset-env": "^7.15.0",
|
|
62
|
-
"@babel/preset-react": "^7.14.5",
|
|
63
|
-
"@babel/runtime": "^7.15.3",
|
|
64
|
-
"@rollup/plugin-alias": "^3.1.5",
|
|
65
|
-
"@rollup/plugin-url": "^6.1.0",
|
|
66
|
-
"@types/react-is": "^17.0.3",
|
|
67
|
-
"@umijs/test": "^3.0.5",
|
|
68
|
-
"babel-eslint": "^10.1.0",
|
|
69
|
-
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
70
|
-
"cross-env": "^7.0.3",
|
|
71
|
-
"dumi": "^1.0.14",
|
|
72
|
-
"enzyme": "^3.11.0",
|
|
73
|
-
"enzyme-adapter-react-16": "^1.15.2",
|
|
74
|
-
"enzyme-to-json": "^3.5.0",
|
|
75
|
-
"eslint": "^7.32.0",
|
|
76
|
-
"eslint-config-airbnb": "^18.2.1",
|
|
77
|
-
"eslint-config-prettier": "^8.3.0",
|
|
78
|
-
"eslint-import-resolver-alias": "^1.1.2",
|
|
79
|
-
"eslint-plugin-import": "^2.24.2",
|
|
80
|
-
"eslint-plugin-jest": "^24.4.0",
|
|
81
|
-
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
82
|
-
"eslint-plugin-prettier": "^3.4.1",
|
|
83
|
-
"eslint-plugin-react": "^7.24.0",
|
|
84
|
-
"eslint-webpack-plugin": "^3.0.1",
|
|
85
|
-
"father-build": "1.22.1",
|
|
86
|
-
"gh-pages": "^3.0.0",
|
|
87
|
-
"glob": "^7.1.7",
|
|
88
|
-
"identity-obj-proxy": "^3.0.0",
|
|
89
|
-
"jest": "^27.0.6",
|
|
90
|
-
"jest-environment-jsdom": "^27.0.6",
|
|
91
|
-
"jest-transform-css": "2.0.0",
|
|
92
|
-
"lint-staged": "^10.0.7",
|
|
93
|
-
"markdown-it": "^12.2.0",
|
|
94
|
-
"postcss-font-base64": "^1.0.5",
|
|
95
|
-
"prettier": "^2.2.1",
|
|
96
|
-
"rimraf": "^3.0.2",
|
|
97
|
-
"rollup-plugin-postcss": "^4.0.1",
|
|
98
|
-
"rollup-plugin-visualizer": "^4.2.2",
|
|
99
|
-
"umi-lint": "^2.0.2",
|
|
100
|
-
"yargs": "^17.1.1"
|
|
101
|
-
},
|
|
102
|
-
"dependencies": {
|
|
103
|
-
"axios": "^0.19.1",
|
|
104
|
-
"classnames": "^2.2.6",
|
|
105
|
-
"cloud-react": "0.1.19",
|
|
106
|
-
"cloud-react-v2": "npm:cloud-react@1.0.40-4",
|
|
107
|
-
"emoji-mart": "^5.2.0",
|
|
108
|
-
"gray-matter": "^4.0.3",
|
|
109
|
-
"moment": "^2.29.4",
|
|
110
|
-
"postcss-url": "8.0.0",
|
|
111
|
-
"prop-types": "^15.7.2",
|
|
112
|
-
"rc-picker": "^3.1.4",
|
|
113
|
-
"rc-overflow": "^1.2.8",
|
|
114
|
-
"react": "^16.8.6",
|
|
115
|
-
"react-dom": "^16.8.6",
|
|
116
|
-
"react-router-dom": "^5.0.0",
|
|
117
|
-
"rollup-plugin-babel": "^4.4.0",
|
|
118
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
119
|
-
"rollup-plugin-eslint": "^7.0.0",
|
|
120
|
-
"rollup-plugin-img": "^1.1.0",
|
|
121
|
-
"rollup-plugin-node-resolve": "^5.2.0",
|
|
122
|
-
"rollup-plugin-uglify": "^6.0.4",
|
|
123
|
-
"shuyun-utils": "0.0.3",
|
|
124
|
-
"react-beautiful-dnd": "^13.1.0",
|
|
125
|
-
"@emoji-mart/data": "^1.0.2"
|
|
126
|
-
},
|
|
127
|
-
"bugs": {
|
|
128
|
-
"url": "https://github.com/ShuyunFF2E/ccms-components-react/issues"
|
|
129
|
-
},
|
|
130
|
-
"homepage": "https://github.com/ShuyunFF2E/ccms-components-react#readme"
|
|
131
|
-
}
|
|
1
|
+
{"name":"cloud-business","version":"0.1.133-1","description":"数据赢家 react 版本业务组件","scripts":{"gen:index":"node ./scripts/generate-index.js","gen:index:dev":"node ./scripts/generate-index.js --dev","gen:doc":"node ./scripts/generate-doc.js","start":"rimraf dist/* && npm run gen:index:dev && father-build --dev && dumi dev","site":"npm run gen:index:dev && dumi build","docs:build":"dumi build","docs:deploy":"gh-pages -d docs-dist","build":"npm run gen:index && rimraf dist/* && father-build","watch":"father-build --watch","deploy":"npm run docs:build && npm run docs:deploy","release":"npm run build && npm publish","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","test":"umi-test","test:coverage":"umi-test --coverage","postversion":"dumi assets","lint":"eslint ./src --ext .js,.jsx","umi-lint":"umi-lint --eslint.ext='.js,jsx' ./src","cli-version":"node ./scripts/generate-version.js","version":"npm run build && npm publish dist","precommit":"umi-lint --staged --eslint --stylelint --prettier --fix"},"dumiAssets":"assets.json","main":"cloud-business.js","module":"dist/index.esm.js","typings":"dist/index.d.ts","source":"src/index.js","gitHooks":{"pre-commit":"lint-staged"},"jest":{"moduleNameMapper":{"^@utils(.*)$":"<rootDir>/src/utils$1","^@contexts(.*)$":"<rootDir>/src/contexts$1","^@src(.*)$":"<rootDir>/src/$1"}},"lint-staged":{"*.{js,jsx,less,md,json}":["prettier --write"]},"repository":"https://github.com/ShuyunFF2E/cloud-business.git","author":"shuyunfe <shuyunfe@shuyun.com>","devDependencies":{"@babel/cli":"^7.14.8","@babel/core":"^7.15.0","@babel/eslint-parser":"^7.15.0","@babel/plugin-proposal-class-properties":"^7.14.5","@babel/plugin-proposal-decorators":"^7.14.5","@babel/plugin-proposal-export-namespace-from":"^7.14.5","@babel/plugin-proposal-function-sent":"^7.14.5","@babel/plugin-proposal-numeric-separator":"^7.14.5","@babel/plugin-proposal-throw-expressions":"^7.14.5","@babel/plugin-syntax-dynamic-import":"^7.8.3","@babel/plugin-transform-runtime":"^7.15.0","@babel/preset-env":"^7.15.0","@babel/preset-react":"^7.14.5","@babel/runtime":"^7.15.3","@rollup/plugin-alias":"^3.1.5","@rollup/plugin-url":"^6.1.0","@types/react-is":"^17.0.3","@umijs/test":"^3.0.5","babel-eslint":"^10.1.0","babel-plugin-transform-react-remove-prop-types":"^0.4.24","cross-env":"^7.0.3","dumi":"^1.0.14","enzyme":"^3.11.0","enzyme-adapter-react-16":"^1.15.2","enzyme-to-json":"^3.5.0","eslint":"^7.32.0","eslint-config-airbnb":"^18.2.1","eslint-config-prettier":"^8.3.0","eslint-import-resolver-alias":"^1.1.2","eslint-plugin-import":"^2.24.2","eslint-plugin-jest":"^24.4.0","eslint-plugin-jsx-a11y":"^6.4.1","eslint-plugin-prettier":"^3.4.1","eslint-plugin-react":"^7.24.0","eslint-webpack-plugin":"^3.0.1","father-build":"1.22.1","gh-pages":"^3.0.0","glob":"^7.1.7","identity-obj-proxy":"^3.0.0","jest":"^27.0.6","jest-environment-jsdom":"^27.0.6","jest-transform-css":"2.0.0","lint-staged":"^10.0.7","markdown-it":"^12.2.0","postcss-font-base64":"^1.0.5","prettier":"^2.2.1","rimraf":"^3.0.2","rollup-plugin-postcss":"^4.0.1","rollup-plugin-visualizer":"^4.2.2","umi-lint":"^2.0.2","yargs":"^17.1.1"},"dependencies":{"@emoji-mart/data":"^1.0.2","axios":"^0.19.1","classnames":"^2.2.6","cloud-react":"0.1.19","cloud-react-v2":"npm:cloud-react@1.0.40-4","emoji-mart":"^5.2.0","gray-matter":"^4.0.3","moment":"^2.29.4","postcss-url":"8.0.0","prop-types":"^15.7.2","rc-overflow":"^1.2.8","rc-picker":"^3.1.4","react":"^16.8.6","react-beautiful-dnd":"^13.1.0","react-dom":"^16.8.6","react-router-dom":"^5.0.0","rollup-plugin-babel":"^4.4.0","rollup-plugin-copy":"^3.4.0","rollup-plugin-eslint":"^7.0.0","rollup-plugin-img":"^1.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-uglify":"^6.0.4","shuyun-utils":"0.0.3"},"bugs":{"url":"https://github.com/ShuyunFF2E/ccms-components-react/issues"},"homepage":"https://github.com/ShuyunFF2E/ccms-components-react#readme"}
|
package/.babelrc
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"presets": [
|
|
3
|
-
"@babel/preset-env",
|
|
4
|
-
"@babel/preset-react"
|
|
5
|
-
],
|
|
6
|
-
"plugins": [
|
|
7
|
-
["@babel/plugin-proposal-decorators", { "legacy": true }],
|
|
8
|
-
"@babel/plugin-proposal-function-sent",
|
|
9
|
-
"@babel/plugin-proposal-export-namespace-from",
|
|
10
|
-
"@babel/plugin-proposal-numeric-separator",
|
|
11
|
-
"@babel/plugin-proposal-throw-expressions",
|
|
12
|
-
"@babel/plugin-syntax-dynamic-import",
|
|
13
|
-
["@babel/plugin-proposal-class-properties", { "loose": true }],
|
|
14
|
-
[
|
|
15
|
-
"@babel/plugin-transform-runtime",
|
|
16
|
-
{
|
|
17
|
-
"helpers": true,
|
|
18
|
-
"regenerator": true
|
|
19
|
-
}
|
|
20
|
-
]
|
|
21
|
-
]
|
|
22
|
-
}
|
package/.idea/cloud-business.iml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
</module>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/cloud-business.iml" filepath="$PROJECT_DIR$/.idea/cloud-business.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|