antd-management-fast-develop 1.1.10 → 1.1.12
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/bin/cli.js +0 -0
- package/package.json +50 -50
- package/src/index.js +2 -0
package/bin/cli.js
CHANGED
File without changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "antd-management-fast-develop",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.12",
|
4
4
|
"description": "",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "",
|
@@ -17,72 +17,40 @@
|
|
17
17
|
"src/",
|
18
18
|
"types/"
|
19
19
|
],
|
20
|
-
"scripts": {
|
21
|
-
"ejs:test": "node ./bin/cli.js generate --dataPath ./src/data.json",
|
22
|
-
"precommit": "npm run z:lint:staged:quiet",
|
23
|
-
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
|
24
|
-
"z:auto:adjust:file": "echo can exec some file adjust command with here",
|
25
|
-
"prez:documentation:generate": "npx rimraf ./docs && npm run z:documentation:lint",
|
26
|
-
"z:documentation:generate": "npx documentation build src/** -f html --github -o docs",
|
27
|
-
"z:documentation:lint": "npx documentation lint src/**",
|
28
|
-
"z:lint:file:all": "npm run z:lint:script:all && npm run z:lint:style:all",
|
29
|
-
"z:lint:file:all:fix": "npm run z:lint:script:all:fix && npm run z:lint:style:all:fix",
|
30
|
-
"z:lint:file:change": "npm run z:lint:script:change && npm run z:lint:style:all",
|
31
|
-
"z:lint:file:change:fix": "npm run z:lint:script:change:fix && npm run z:lint:style:all:fix",
|
32
|
-
"z:lint:script:all": "npx eslint --ext .js,.jsx,.ts,.tsx ./src",
|
33
|
-
"z:lint:script:all:fix": "npx eslint --fix --ext .js,.jsx,.ts,.tsx ./src",
|
34
|
-
"postz:lint:script:all:fix": "npm run z:prettier:format:all",
|
35
|
-
"z:lint:script:change": "npx eslint --cache --ext .js,.jsx,.ts,.tsx ./src",
|
36
|
-
"z:lint:script:change:fix": "npx eslint --fix --cache --ext .js,.jsx,.ts,.tsx ./src",
|
37
|
-
"postz:lint:script:change:fix": "npm run z:prettier:format:change",
|
38
|
-
"z:lint:staged": "npx lint-staged",
|
39
|
-
"z:lint:staged:quiet": "npx lint-staged --quiet",
|
40
|
-
"z:lint:style:all": "npx stylelint --allow-empty-input \"./src/**/*.{css,scss,less}\"",
|
41
|
-
"z:lint:style:all:fix": "npx stylelint --allow-empty-input --fix \"./src/**/*.{css,scss,less}\"",
|
42
|
-
"postz:lint:style:all:fix": "npm run z:prettier:format:all",
|
43
|
-
"z:lint:style:change": "npx stylelint --allow-empty-input --cache \"./src/**/*.{css,scss,less}\"",
|
44
|
-
"z:lint:style:change:fix": "npx stylelint --allow-empty-input --cache --fix \"./src/**/*.{css,scss,less}\"",
|
45
|
-
"postz:lint:style:change:fix": "npm run z:prettier:format:change",
|
46
|
-
"z:prettier:format:all": "npx prettier --write .",
|
47
|
-
"z:prettier:format:change": "npx prettier --cache --write .",
|
48
|
-
"z:prettier:package.json": "npx prettier --write ./package.json",
|
49
|
-
"z:test": "cross-env NODE_ENV=test jest",
|
50
|
-
"z:tsc:build": "echo show tsc version and create declaration file && tsc -v && tsc -p ./tsconfig.types.json && echo declaration file generate complete"
|
51
|
-
},
|
52
20
|
"dependencies": {
|
53
|
-
"@umijs/max": "^4.0.
|
21
|
+
"@umijs/max": "^4.0.79",
|
54
22
|
"commander": "^11.0.0",
|
55
23
|
"ejs": "^3.1.9",
|
56
24
|
"rimraf": "^5.0.1",
|
57
|
-
"umi": "^4.0.
|
25
|
+
"umi": "^4.0.79"
|
58
26
|
},
|
59
27
|
"devDependencies": {
|
60
|
-
"@babel/core": "^7.22.
|
61
|
-
"@babel/eslint-parser": "^7.22.
|
28
|
+
"@babel/core": "^7.22.11",
|
29
|
+
"@babel/eslint-parser": "^7.22.11",
|
62
30
|
"@babel/plugin-external-helpers": "^7.22.5",
|
63
31
|
"@babel/plugin-proposal-decorators": "^7.22.10",
|
64
32
|
"@babel/plugin-transform-class-properties": "^7.22.5",
|
65
33
|
"@babel/plugin-transform-private-methods": "^7.22.5",
|
66
|
-
"@babel/plugin-transform-private-property-in-object": "^7.22.
|
34
|
+
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
|
67
35
|
"@babel/plugin-transform-runtime": "^7.22.10",
|
68
|
-
"@babel/preset-env": "^7.22.
|
36
|
+
"@babel/preset-env": "^7.22.14",
|
69
37
|
"@babel/preset-react": "^7.22.5",
|
70
|
-
"@babel/runtime": "^7.22.
|
38
|
+
"@babel/runtime": "^7.22.11",
|
71
39
|
"@commitlint/cli": "^17.7.1",
|
72
40
|
"@commitlint/config-conventional": "^17.7.0",
|
73
41
|
"@commitlint/config-lerna-scopes": "^17.7.0",
|
74
42
|
"@commitlint/cz-commitlint": "^17.7.1",
|
75
43
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
|
76
|
-
"@types/jest": "^29.5.
|
77
|
-
"@types/node": "^20.5.
|
78
|
-
"@typescript-eslint/parser": "^6.
|
79
|
-
"babel-jest": "^29.6.
|
44
|
+
"@types/jest": "^29.5.4",
|
45
|
+
"@types/node": "^20.5.9",
|
46
|
+
"@typescript-eslint/parser": "^6.5.0",
|
47
|
+
"babel-jest": "^29.6.4",
|
80
48
|
"commitizen": "^4.3.0",
|
81
|
-
"conventional-changelog-conventionalcommits": "^
|
49
|
+
"conventional-changelog-conventionalcommits": "^7.0.1",
|
82
50
|
"cross-env": "^7.0.3",
|
83
51
|
"documentation": "^14.0.2",
|
84
|
-
"easy-soft-develop": "^2.1.
|
85
|
-
"eslint": "^8.
|
52
|
+
"easy-soft-develop": "^2.1.35",
|
53
|
+
"eslint": "^8.48.0",
|
86
54
|
"eslint-config-airbnb": "^19.0.4",
|
87
55
|
"eslint-config-airbnb-typescript": "^17.1.0",
|
88
56
|
"eslint-config-prettier": "^9.0.0",
|
@@ -99,9 +67,9 @@
|
|
99
67
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
100
68
|
"eslint-plugin-unicorn": "^48.0.1",
|
101
69
|
"husky": "^8.0.3",
|
102
|
-
"jest": "^29.6.
|
70
|
+
"jest": "^29.6.4",
|
103
71
|
"lint-staged": "^14.0.1",
|
104
|
-
"prettier": "^3.0.
|
72
|
+
"prettier": "^3.0.3",
|
105
73
|
"prettier-plugin-organize-imports": "^3.2.3",
|
106
74
|
"prettier-plugin-packagejson": "^2.4.5",
|
107
75
|
"react": "^18.2.0",
|
@@ -109,5 +77,37 @@
|
|
109
77
|
"stylelint": "^15.10.3",
|
110
78
|
"stylelint-config-prettier": "^9.0.5",
|
111
79
|
"stylelint-config-standard": "^34.0.0"
|
80
|
+
},
|
81
|
+
"scripts": {
|
82
|
+
"ejs:test": "node ./bin/cli.js generate --dataPath ./src/data.json",
|
83
|
+
"precommit": "npm run z:lint:staged:quiet",
|
84
|
+
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
|
85
|
+
"z:auto:adjust:file": "echo can exec some file adjust command with here",
|
86
|
+
"prez:documentation:generate": "npx rimraf ./docs && npm run z:documentation:lint",
|
87
|
+
"z:documentation:generate": "npx documentation build src/** -f html --github -o docs",
|
88
|
+
"z:documentation:lint": "npx documentation lint src/**",
|
89
|
+
"z:lint:file:all": "npm run z:lint:script:all && npm run z:lint:style:all",
|
90
|
+
"z:lint:file:all:fix": "npm run z:lint:script:all:fix && npm run z:lint:style:all:fix",
|
91
|
+
"z:lint:file:change": "npm run z:lint:script:change && npm run z:lint:style:all",
|
92
|
+
"z:lint:file:change:fix": "npm run z:lint:script:change:fix && npm run z:lint:style:all:fix",
|
93
|
+
"z:lint:script:all": "npx eslint --ext .js,.jsx,.ts,.tsx ./src",
|
94
|
+
"z:lint:script:all:fix": "npx eslint --fix --ext .js,.jsx,.ts,.tsx ./src",
|
95
|
+
"postz:lint:script:all:fix": "npm run z:prettier:format:all",
|
96
|
+
"z:lint:script:change": "npx eslint --cache --ext .js,.jsx,.ts,.tsx ./src",
|
97
|
+
"z:lint:script:change:fix": "npx eslint --fix --cache --ext .js,.jsx,.ts,.tsx ./src",
|
98
|
+
"postz:lint:script:change:fix": "npm run z:prettier:format:change",
|
99
|
+
"z:lint:staged": "npx lint-staged",
|
100
|
+
"z:lint:staged:quiet": "npx lint-staged --quiet",
|
101
|
+
"z:lint:style:all": "npx stylelint --allow-empty-input \"./src/**/*.{css,scss,less}\"",
|
102
|
+
"z:lint:style:all:fix": "npx stylelint --allow-empty-input --fix \"./src/**/*.{css,scss,less}\"",
|
103
|
+
"postz:lint:style:all:fix": "npm run z:prettier:format:all",
|
104
|
+
"z:lint:style:change": "npx stylelint --allow-empty-input --cache \"./src/**/*.{css,scss,less}\"",
|
105
|
+
"z:lint:style:change:fix": "npx stylelint --allow-empty-input --cache --fix \"./src/**/*.{css,scss,less}\"",
|
106
|
+
"postz:lint:style:change:fix": "npm run z:prettier:format:change",
|
107
|
+
"z:prettier:format:all": "npx prettier --write .",
|
108
|
+
"z:prettier:format:change": "npx prettier --cache --write .",
|
109
|
+
"z:prettier:package.json": "npx prettier --write ./package.json",
|
110
|
+
"z:test": "cross-env NODE_ENV=test jest",
|
111
|
+
"z:tsc:build": "echo show tsc version and create declaration file && tsc -v && tsc -p ./tsconfig.types.json && echo declaration file generate complete"
|
112
112
|
}
|
113
|
-
}
|
113
|
+
}
|
package/src/index.js
CHANGED