File tree 5 files changed +14
-11
lines changed
5 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 3
3
<plist version =" 1.0" >
4
4
<dict >
5
5
<key >name </key >
6
- <string >Bootstrap Icons 1.0.0.1 </string >
6
+ <string >Bootstrap Icons 1.0.0.2 </string >
7
7
<key >version </key >
8
- <string >1.0.0.1 </string >
8
+ <string >1.0.0.2 </string >
9
9
<key >webaddress </key >
10
10
<string >https://github.com/ruedap/alfred-bootstrap-icons-workflow </string >
11
11
<key >readme </key >
Original file line number Diff line number Diff line change 31
31
"utils:json" : " ts-node ./utils/converters/icons_to_json.ts" ,
32
32
"utils:svg2png" : " rimraf ./assets/icons && mkdirp ./assets/icons && ts-node ./utils/converters/svg_to_png.ts" ,
33
33
"utils:composite" : " ts-node ./utils/converters/composite.ts" ,
34
- "utils:icons" : " npm run utils:svg2png && npm run utils:composite"
34
+ "utils:icons" : " npm run utils:svg2png && npm run utils:composite" ,
35
+ "release:json" : " npm run utils:json" ,
36
+ "release:icons" : " npm run utils:svg2png && npm run utils:composite" ,
37
+ "release:build" : " npm run build:open"
35
38
},
36
39
"repository" : {
37
40
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -50,15 +50,13 @@ const EXAMPLES = {
50
50
const main = async ( ) => {
51
51
const paths = outputPaths ;
52
52
53
- console . log ( "start composite " ) ;
53
+ console . log ( "Compositing is progress... " ) ;
54
54
await composite ( paths ) ;
55
- console . log ( "end composite " ) ;
55
+ console . log ( "Composited successfully. " ) ;
56
56
57
- console . log ( "start minify " ) ;
57
+ console . log ( "Minifying is progress... " ) ;
58
58
await minify ( paths ) ;
59
- console . log ( "end minify" ) ;
60
-
61
- console . log ( "composite is complete" ) ;
59
+ console . log ( "Minified successfully." ) ;
62
60
} ;
63
61
64
62
main ( ) ;
Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ const main = () => {
68
68
69
69
const json = JSON . stringify ( obj , null , 2 ) ;
70
70
fs . writeFileSync ( "./assets/icons.json" , json ) ;
71
- console . log ( `Output assets/icons.json for ${ frontMatters . length } icons` ) ;
71
+ console . log (
72
+ `Outputted assets/icons.json of ${ frontMatters . length } icons successfully.`
73
+ ) ;
72
74
} ;
73
75
74
76
main ( ) ;
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ const EXAMPLES = {
46
46
} ;
47
47
48
48
const main = ( ) => {
49
- console . log ( "start svg2png" ) ;
50
49
convert ( SVGS ) ;
50
+ console . log ( "SVG2PNG successfully." ) ;
51
51
} ;
52
52
53
53
main ( ) ;
You can’t perform that action at this time.
0 commit comments