@ebolax/animated-icons 1.0.10 → 1.0.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/README.md +1 -1
- package/package.json +8 -4
- package/dist/index.html +0 -19698
package/README.md
CHANGED
|
@@ -60,9 +60,9 @@ This generates:
|
|
|
60
60
|
|
|
61
61
|
- `dist/animated-icons.css`
|
|
62
62
|
- `dist/animated-icons.min.css`
|
|
63
|
+
- `dist/animated-icons.bundle.min.css`
|
|
63
64
|
- `dist/aic-icons/` (individual SVGs, one per icon)
|
|
64
65
|
- `dist/icons.json` (metadata used by the docs)
|
|
65
|
-
- `dist/index.html` (demo / playground)
|
|
66
66
|
|
|
67
67
|
**Include the CSS in your app**
|
|
68
68
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebolax/animated-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "CSS-only animated icons for Lucide, Heroicons and Iconoir",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,13 +24,15 @@
|
|
|
24
24
|
"prepublishOnly": "npm run build",
|
|
25
25
|
"esbuild_bundle": "esbuild dist/animated-icons.css --bundle --outfile=dist/animated-icons.bundle.min.css --minify --loader:.svg=dataurl",
|
|
26
26
|
"esbuild_minify": "esbuild dist/animated-icons.css --outfile=dist/animated-icons.min.css --minify",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
27
|
+
"copy_css": "cpx \"dist/animated-icons.bundle.min.css\" deploy",
|
|
28
|
+
"build": "node build-css-icons.mjs && npm run esbuild_bundle && npm run esbuild_minify && npm run copy_css",
|
|
29
|
+
"serve": "serve deploy",
|
|
29
30
|
"start": "npm run build && npm run serve",
|
|
30
31
|
"nodemon": "nodemon --watch base.css --watch index.ejs --watch build-css-icons.mjs --exec \"npm run build\"",
|
|
31
32
|
"dev": "npm-run-all --parallel nodemon serve",
|
|
32
33
|
"git_update": "git add . && git commit -m 'Update' && git push origin main",
|
|
33
|
-
"npm_update": "npm version patch && npm publish"
|
|
34
|
+
"npm_update": "npm version patch && npm publish",
|
|
35
|
+
"deploy": "gh-pages -d deploy"
|
|
34
36
|
},
|
|
35
37
|
"author": "ebolax",
|
|
36
38
|
"license": "ISC",
|
|
@@ -47,9 +49,11 @@
|
|
|
47
49
|
},
|
|
48
50
|
"devDependencies": {
|
|
49
51
|
"@eslint/js": "^10.0.1",
|
|
52
|
+
"cpx": "^1.5.0",
|
|
50
53
|
"ejs": "^5.0.1",
|
|
51
54
|
"esbuild": "^0.27.3",
|
|
52
55
|
"eslint": "^10.0.3",
|
|
56
|
+
"gh-pages": "^6.3.0",
|
|
53
57
|
"globals": "^17.4.0",
|
|
54
58
|
"heroicons": "^2.2.0",
|
|
55
59
|
"iconoir": "^7.11.0",
|