-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c82356
commit e1ebbfb
Showing
1 changed file
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@uiw/icons", | ||
"version": "2.6.7", | ||
"version": "2.6.8", | ||
"description": "The premium icon font for uiw Component Library.", | ||
"author": "Kenny <[email protected]>", | ||
"main": "./lib/index.js", | ||
|
@@ -13,10 +13,19 @@ | |
"homepage": "https://uiwjs.github.io/icons", | ||
"scripts": { | ||
"font": "svgtofont --sources icons/icons --output fonts", | ||
"copy": "copyfiles -f fonts/react/* react --verbose", | ||
"copy": "cpy fonts/react/*.js fonts/react/*.d.ts react --flat", | ||
"build": "tsbb build react/*.{js,d.ts} --useBabel", | ||
"start": "npm run font && npm run copy && npm run build" | ||
}, | ||
"files": [ | ||
"lib", | ||
"esm", | ||
"*.js", | ||
"icon", | ||
"!icon/react", | ||
"!icon/*.html", | ||
"fonts" | ||
], | ||
"keywords": [ | ||
"svg", | ||
"icon", | ||
|
@@ -42,7 +51,7 @@ | |
"base64" | ||
], | ||
"devDependencies": { | ||
"copyfiles": "~2.4.1", | ||
"cpy-cli": "^4.2.0", | ||
"svgtofont": "~3.23.0", | ||
"tsbb": "^4.0.2" | ||
}, | ||
|