@ws-ui/icons 0.0.1
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 +26 -0
- package/dist/assets/4DIcons.d.ts +1614 -0
- package/dist/assets/index.d.ts +3 -0
- package/dist/index.cjs.js +30 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +3704 -0
- package/dist/index.es.js.map +1 -0
- package/package.json +52 -0
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Get Icons
|
|
2
|
+
|
|
3
|
+
- to get the icons please add a `.secrets.env` to the root folder of the project with `TD_USERNAME` and `TD_PASSWORD`
|
|
4
|
+
|
|
5
|
+
- download and lint the new icons by running
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm run download:icons
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
- to work locally with this icons in webstudio run
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
yalc publish
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
on this project and run
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
yalc add @ws-ui/icons
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
in webstudio
|
|
24
|
+
|
|
25
|
+
- please bump the version on `package.json` so the package gets published locally
|
|
26
|
+
|