focalisicons 1.0.2

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/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ ISC License
2
+
3
+ Copyright (c) focalispackages
4
+
5
+ Permission to use, copy, modify, and/or distribute this software for any
6
+ purpose with or without fee is hereby granted, provided that the above
7
+ copyright notice and this permission notice appear in all copies.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
10
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
12
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
14
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15
+ PERFORMANCE OF THIS SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # Focalis Icons
2
+
3
+ Open-source icon library with automated build pipeline.
4
+
5
+ ## Styles
6
+
7
+ | Style | Prefix | Description |
8
+ |---|---|---|
9
+ | Regular Rounded | `fi-rr` | Filled, rounded |
10
+ | Thin Rounded | `fi-tr` | Thin outline, rounded |
11
+
12
+ ## Usage
13
+
14
+ ### CDN
15
+
16
+ ```html
17
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/focalisicons@latest/dist/css/focalis-regular-rounded.css">
18
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/focalisicons@latest/dist/css/focalis-thin-rounded.css">
19
+ ```
20
+
21
+ ### npm
22
+
23
+ ```bash
24
+ npm install focalisicons
25
+ ```
26
+
27
+ ```html
28
+ <i class="fi fi-rr-abacus"></i>
29
+ <i class="fi fi-tr-abacus"></i>
30
+ ```
31
+
32
+ ## Development
33
+
34
+ ```bash
35
+ npm install
36
+ npm run build
37
+ npm test
38
+ ```
39
+
40
+ ### Scripts
41
+
42
+ | Script | Description |
43
+ |---|---|
44
+ | `npm run clean` | Clean dist directory |
45
+ | `npm run optimize` | Optimize SVGs with SVGO |
46
+ | `npm run lint` | Lint SVG files |
47
+ | `npm run build` | Full build pipeline |
48
+ | `npm test` | Run tests |
49
+ | `npm run commit` | Commitizen commit |
50
+
51
+ ## License
52
+
53
+ ISC