File tree 2 files changed +4
-4
lines changed
packages/vue-quill/src/assets
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ backgroundColor = #fff
5
5
inactiveColor = #4B 55 63
6
6
shadowColor = #D1 D5 DB
7
7
textColor = #4B 55 63
8
- // Additional color
8
+ // Additional colors
9
9
backgroundHoverColor = #F3 F4 F6
10
10
backgroundActiveColor = #DB EA FE
11
11
Original file line number Diff line number Diff line change @@ -58,10 +58,10 @@ npm run assets:build -- vue-quill
58
58
if ( isRelease && assets . private ) return
59
59
if ( ! assets . css . length ) return
60
60
console . log (
61
- chalk . cyan ( `\n>>>>>>>>>>>>>>>>>>>> BUILD ASSETS <<<<<<<<<<<<<<<<<<<<` )
61
+ chalk . cyan ( `\n>>>>>>>>>>>>>>>>>>>> BUILD ASSETS <<<<<<<<<<<<<<<<<<<<\n ` )
62
62
)
63
63
64
- await assets . css . forEach ( async ( css : any ) => {
64
+ for ( const css of assets . css ) {
65
65
const input = path . resolve ( pkgDir , css . input )
66
66
const inputExt = path . extname ( input )
67
67
const output = path . resolve ( pkgDir , css . output )
@@ -78,7 +78,7 @@ npm run assets:build -- vue-quill
78
78
} else {
79
79
console . log ( chalk . redBright ( `File extention not supported: ${ input } ` ) )
80
80
}
81
- } )
81
+ }
82
82
}
83
83
84
84
function checkAllSizes ( targets : string [ ] ) {
You can’t perform that action at this time.
0 commit comments