@npm-questionpro/wick-ui-icon 1.3.1 → 2.0.0-next.5
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 +111 -17
- package/dist/wu-icon.css +3863 -2316
- package/dist/wu-icon.woff +0 -0
- package/dist/wu-icon.woff2 +0 -0
- package/llms.txt +25 -0
- package/package.json +25 -14
- package/dist/wu-icon.eot +0 -0
- package/dist/wu-icon.svg +0 -6939
- package/dist/wu-icon.ttf +0 -0
package/dist/wu-icon.woff
CHANGED
|
Binary file
|
package/dist/wu-icon.woff2
CHANGED
|
Binary file
|
package/llms.txt
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @npm-questionpro/wick-ui-icon
|
|
2
|
+
|
|
3
|
+
> Icon font library with Material and custom icons for QuestionPro
|
|
4
|
+
|
|
5
|
+
Version: 2.0.0-next.5
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
```
|
|
9
|
+
pnpm add @npm-questionpro/wick-ui-icon
|
|
10
|
+
# or for package consumers:
|
|
11
|
+
pnpm add -D @npm-questionpro/wick-ui-icon
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Quick start
|
|
15
|
+
```html
|
|
16
|
+
<link
|
|
17
|
+
rel="stylesheet"
|
|
18
|
+
href="@npm-questionpro/wick-ui-icon/dist/wu-icon.css"
|
|
19
|
+
/>
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Links
|
|
23
|
+
- npm: https://npmjs.com/package/@npm-questionpro/wick-ui-icon
|
|
24
|
+
- llms.txt (unpkg): https://unpkg.com/@npm-questionpro/wick-ui-icon/llms.txt
|
|
25
|
+
- llms.txt (jsDelivr): https://cdn.jsdelivr.net/npm/@npm-questionpro/wick-ui-icon/llms.txt
|
package/package.json
CHANGED
|
@@ -1,25 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm-questionpro/wick-ui-icon",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-next.5",
|
|
4
4
|
"description": "Icon font library with Material and custom icons for QuestionPro",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
|
-
"main": "dist/wu-icon.css",
|
|
8
7
|
"exports": {
|
|
9
8
|
"./dist/wu-icon.css": "./dist/wu-icon.css"
|
|
10
9
|
},
|
|
11
10
|
"files": [
|
|
12
|
-
"dist"
|
|
11
|
+
"dist",
|
|
12
|
+
"llms.txt"
|
|
13
13
|
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "node index.js",
|
|
16
|
-
"release:patch": "pnpm build && pnpm version patch && pnpm publish",
|
|
17
|
-
"release:minor": "pnpm build && pnpm version minor && pnpm publish",
|
|
18
|
-
"release:major": "pnpm build && pnpm version major && pnpm publish",
|
|
19
|
-
"mat:clone": "git clone https://github.com/google/material-design-icons.git",
|
|
20
|
-
"mat:pull": "git pull",
|
|
21
|
-
"mat:update": "cd material-design-icons && git pull && cd .. && node material.js && pnpm build"
|
|
22
|
-
},
|
|
23
14
|
"keywords": [
|
|
24
15
|
"icons",
|
|
25
16
|
"font",
|
|
@@ -37,6 +28,26 @@
|
|
|
37
28
|
"access": "public"
|
|
38
29
|
},
|
|
39
30
|
"devDependencies": {
|
|
40
|
-
"
|
|
31
|
+
"svgo": "^4.0.0",
|
|
32
|
+
"svgtofont": "^6.4.1",
|
|
33
|
+
"vitest": "^4.1.8",
|
|
34
|
+
"@vitest/coverage-v8": "^4.1.8",
|
|
35
|
+
"eslint": "^10.4.1",
|
|
36
|
+
"@wick-ui/tsconfig": "1.0.0",
|
|
37
|
+
"@npm-questionpro/wick-ui-eslint-config": "1.0.0"
|
|
38
|
+
},
|
|
39
|
+
"prettier": "@npm-questionpro/wick-ui-prettier-config",
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "node index.js",
|
|
42
|
+
"mat:clone": "git clone https://github.com/google/material-design-icons.git && mv -r material-design-icons/.git material-design-icons/.bak_git",
|
|
43
|
+
"mat:update": "cd material-design-icons && mv .git_bak .git && git pull && mv .git .git_bak && cd .. && node material.js && pnpm build",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"test:watch": "vitest",
|
|
46
|
+
"test:ci": "vitest run --coverage",
|
|
47
|
+
"postbuild": "node ../../scripts/generate-llms-txt.mjs --package packages/wick-ui-icon && node ../../scripts/wickIcon.mjs",
|
|
48
|
+
"format": "prettier --write .",
|
|
49
|
+
"format:ci": "prettier --check .",
|
|
50
|
+
"lint": "eslint . --fix",
|
|
51
|
+
"lint:ci": "eslint --max-warnings 0 ."
|
|
41
52
|
}
|
|
42
|
-
}
|
|
53
|
+
}
|
package/dist/wu-icon.eot
DELETED
|
Binary file
|