@innoways/drip-form-theme-antd 3.0.0

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/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@innoways/drip-form-theme-antd",
3
+ "version": "3.0.0",
4
+ "author": "JDFED",
5
+ "description": "drip-form antd主题包",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "module": "dist/index.js",
9
+ "main-css": "dist-css/index.js",
10
+ "distExports": {
11
+ "dist": "./dist",
12
+ "dist-css": "./dist-css",
13
+ "build-info": "./build-info",
14
+ "build-css-info": "./build-css-info"
15
+ },
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "github",
19
+ "url": "https://github.com/JDFED/drip-form/"
20
+ },
21
+ "publishConfig": {
22
+ "registry": "https://registry.npmjs.org/",
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "link": "yarn link",
27
+ "build": "rollup --config --sourcemap",
28
+ "build:lib": "rollup --config --sourcemap --banner //lib",
29
+ "watch": "rollup --config --watch"
30
+ },
31
+ "dependencies": {
32
+ "@ant-design/icons": "^4.7.0",
33
+ "@babel/runtime": "^7.10.2",
34
+ "@jdfed/hooks": "^0.8.2",
35
+ "@jdfed/utils": "^0.8.2",
36
+ "moment": "^2.26.0",
37
+ "react-color": "^2.18.1",
38
+ "use-immer": "^0.6.0"
39
+ },
40
+ "devDependencies": {
41
+ "prop-types": "^15.7.2"
42
+ },
43
+ "peerDependencies": {
44
+ "antd": "^4.5.4",
45
+ "react": "^16.13.1 || ^17.0.0",
46
+ "react-dom": "^16.13.1 || ^17.0.0"
47
+ },
48
+ "gitHead": "1416735284b5c9f0d76c7271117fb8723a2300ec"
49
+ }
@@ -0,0 +1,13 @@
1
+ import pkg from './package.json'
2
+ import { getOutput, getExternal, getPlugins } from '../../rollup.base.config'
3
+
4
+ export default {
5
+ input: 'src/index.ts',
6
+ output: getOutput(pkg, process.argv),
7
+ external: getExternal(pkg, process.argv),
8
+ onwarn(warning, warn) {
9
+ if (warning.code === 'THIS_IS_UNDEFINED') return
10
+ warn(warning) // this requires Rollup 0.46
11
+ },
12
+ plugins: getPlugins(pkg, process.argv),
13
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "extends": "../../tsconfig.base.json",
3
+ "include": ["./src/"],
4
+ "exclude": [
5
+ "**/node_modules",
6
+ "dist/**",
7
+ "build-info/**",
8
+ "dist-css/**",
9
+ "build-css-info/**",
10
+ "**/*.css",
11
+ "**/*.styl"
12
+ ],
13
+ "compilerOptions": {
14
+ "tsBuildInfoFile": "./build-css-info/tsconfig.tsbuildinfo",
15
+ "esModuleInterop": true,
16
+ "allowSyntheticDefaultImports": true
17
+ }
18
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "extends": "../../tsconfig.base.json",
3
+ "include": ["./src/"],
4
+ "exclude": [
5
+ "**/node_modules",
6
+ "dist/**",
7
+ "build-info/**",
8
+ "dist-css/**",
9
+ "build-css-info/**",
10
+ "**/*.css",
11
+ "**/*.styl"
12
+ ],
13
+ "compilerOptions": {
14
+ "tsBuildInfoFile": "./build-info/tsconfig.tsbuildinfo",
15
+ "esModuleInterop": true,
16
+ "allowSyntheticDefaultImports": true
17
+ }
18
+ }