@d-matrix/icons-react 0.55.13 → 0.57.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/dist/icons/CheckCircleOutlined.d.ts +3 -0
- package/dist/icons/CheckCircleOutlined.js +1 -0
- package/dist/icons/CheckCircleOutlined.mjs +35 -0
- package/dist/icons/HearsayVipColored.d.ts +3 -0
- package/dist/icons/HearsayVipColored.js +1 -0
- package/dist/icons/HearsayVipColored.mjs +44 -0
- package/dist/icons/InProgressOutlined.d.ts +3 -0
- package/dist/icons/InProgressOutlined.js +1 -0
- package/dist/icons/InProgressOutlined.mjs +33 -0
- package/dist/icons/VipColored.d.ts +3 -0
- package/dist/icons/VipColored.js +1 -0
- package/dist/icons/VipColored.mjs +41 -0
- package/dist/icons/index.d.ts +4 -0
- package/dist/icons/index.js +1 -1
- package/dist/icons/index.mjs +678 -670
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-matrix/icons-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.57.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"lint": "eslint .",
|
|
52
52
|
"pregenerate": "npm run clean",
|
|
53
53
|
"generate:step2": "rimraf ./src/icons && cross-env TS_NODE_PROJECT=scripts/tsconfig.json node --import ./scripts/ts-node.register.mjs scripts/generate.ts",
|
|
54
|
-
"generate:step1": "svgr --out-dir ./src/components --typescript --
|
|
54
|
+
"generate:step1": "svgr --out-dir ./src/components --typescript -- ../../node_modules/@d-matrix/icons-svg/public/",
|
|
55
55
|
"generate": "npm run generate:step1 && npm run generate:step2",
|
|
56
56
|
"postgenerate": "npm run build",
|
|
57
57
|
"prepublishOnly": "npm run generate && npm run build",
|
|
@@ -60,7 +60,8 @@
|
|
|
60
60
|
"postpublish": "echo \"wait for 3 seconds, then sync cnpm\" && npm run wait3s && npm run cnpm:sync",
|
|
61
61
|
"load": "dotenvx run -f .env -- sh -c 'echo $NPM_AUTHTOKEN'",
|
|
62
62
|
"pb": "dotenvx run -f .env -- npm publish --access public",
|
|
63
|
-
"postversion": "npm
|
|
63
|
+
"postversion": "npm run update:deps --workspace=@d-matrix/icons-site",
|
|
64
|
+
"update:deps": "node scripts/update-ws-deps.js && npm run ref --workspaces=false --prefix=../../"
|
|
64
65
|
},
|
|
65
66
|
"keywords": [
|
|
66
67
|
"react",
|
|
@@ -102,6 +103,7 @@
|
|
|
102
103
|
"vite-plugin-dts": "^4.3.0"
|
|
103
104
|
},
|
|
104
105
|
"dependencies": {
|
|
106
|
+
"@d-matrix/icons-svg": "0.3.1",
|
|
105
107
|
"classnames": "^2.5.1",
|
|
106
108
|
"rc-util": "^5.44.3"
|
|
107
109
|
}
|