@ebolax/animated-icons 1.0.5 → 1.0.8
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 +4 -0
- package/dist/index.html +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -18,6 +18,10 @@ npm i @ebolax/animated-icons
|
|
|
18
18
|
```
|
|
19
19
|
After installing, link the stylesheet from `node_modules/ebolax-animated-icons/dist/animated-icons.css` (or the minified `animated-icons.min.css`) and use the icon classes as shown below.
|
|
20
20
|
|
|
21
|
+
```html
|
|
22
|
+
<link rel="stylesheet" href="node_modules/@ebolax/animated-icons/dist/animated-icons.min.css">
|
|
23
|
+
```
|
|
24
|
+
|
|
21
25
|
If you prefer an even simpler setup with no dependency on the `aic-icons` directory, you can use the bundled CSS file:
|
|
22
26
|
|
|
23
27
|
```html
|
package/dist/index.html
CHANGED
|
@@ -19094,7 +19094,7 @@
|
|
|
19094
19094
|
<p class="section-meta mb-2">You can install this package from <a href="https://www.npmjs.com/package/@ebolax/animated-icons" target="_blank" rel="noopener noreferrer">npm</a> and use the built CSS and icons in your project.</p>
|
|
19095
19095
|
<pre class="mb-2"><code>npm i @ebolax/animated-icons</code></pre>
|
|
19096
19096
|
<p class="section-meta mb-2">After installing, link the stylesheet from <code>node_modules/ebolax-animated-icons/dist/animated-icons.css</code> (or the minified <code>animated-icons.min.css</code>) and use the icon classes as shown below.</p>
|
|
19097
|
-
<pre class="mb-2"><code><link rel="stylesheet" href="/
|
|
19097
|
+
<pre class="mb-2"><code><link rel="stylesheet" href="node_modules/@ebolax/animated-icons/dist/animated-icons.min.css"></code></pre>
|
|
19098
19098
|
<p class="section-meta mb-2">
|
|
19099
19099
|
For the simplest setup, you can use the bundled <code>animated-icons.bundle.min.css</code> file, which includes all icons as embedded assets.
|
|
19100
19100
|
<br>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebolax/animated-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "CSS-only animated icons for Lucide, Heroicons and Iconoir",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,13 +30,14 @@
|
|
|
30
30
|
"nodemon": "nodemon --watch base.css --watch index.ejs --watch build-css-icons.mjs --exec \"npm run build\"",
|
|
31
31
|
"dev": "npm-run-all --parallel nodemon serve",
|
|
32
32
|
"git_update": "git add . && git commit -m 'Update' && git push origin main",
|
|
33
|
-
"npm_update": "npm
|
|
33
|
+
"npm_update": "npm publish"
|
|
34
34
|
},
|
|
35
35
|
"author": "ebolax",
|
|
36
36
|
"license": "ISC",
|
|
37
37
|
"type": "commonjs",
|
|
38
38
|
"files": [
|
|
39
|
-
"dist"
|
|
39
|
+
"dist",
|
|
40
|
+
"README.md"
|
|
40
41
|
],
|
|
41
42
|
"exports": {
|
|
42
43
|
".": {
|