mx-icons 1.0.33 → 1.0.34
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/favicon.ico +0 -0
- package/dist/logo.png +0 -0
- package/dist/maskable_icon.png +0 -0
- package/dist/mx-icons-bg.png +0 -0
- package/dist/mx-icons-ts.png +0 -0
- package/dist/mx-icons.png +0 -0
- package/dist/mxicons-banner.png +0 -0
- package/dist/preview.png +0 -0
- package/package.json +4 -3
package/dist/favicon.ico
CHANGED
|
Binary file
|
package/dist/logo.png
CHANGED
|
Binary file
|
package/dist/maskable_icon.png
CHANGED
|
Binary file
|
package/dist/mx-icons-bg.png
CHANGED
|
Binary file
|
package/dist/mx-icons-ts.png
CHANGED
|
Binary file
|
package/dist/mx-icons.png
CHANGED
|
Binary file
|
package/dist/mxicons-banner.png
CHANGED
|
Binary file
|
package/dist/preview.png
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mx-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.34",
|
|
4
4
|
"description": "Beautiful hand-crafted SVG icons for React - light mode only",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,10 +41,11 @@
|
|
|
41
41
|
"react": "^18.0.0 || ^19.0.0"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
|
-
"dev": "vite",
|
|
45
|
-
"build": "vite build",
|
|
44
|
+
"dev": "node scripts/generate-icon-meta.js && vite",
|
|
45
|
+
"build": "node scripts/generate-icon-meta.js && vite build",
|
|
46
46
|
"build:lib": "npm run generate:types && vite build --config vite.lib.config.js && npm run copy:types",
|
|
47
47
|
"generate:types": "node scripts/generate-types.js",
|
|
48
|
+
"generate:meta": "node scripts/generate-icon-meta.js",
|
|
48
49
|
"copy:types": "node -e \"const fs=require('fs'); fs.copyFileSync('src/icons/index.d.ts','dist/index.d.ts'); if(fs.existsSync('src/icons/Icon.d.ts')){fs.copyFileSync('src/icons/Icon.d.ts','dist/Icon.d.ts')}\"",
|
|
49
50
|
"lint": "eslint .",
|
|
50
51
|
"preview": "vite preview"
|