File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/vue-quill/src/assets Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ backgroundColor = #fff
55inactiveColor = #4B 55 63
66shadowColor = #D1 D5 DB
77textColor = #4B 55 63
8- // Additional color
8+ // Additional colors
99backgroundHoverColor = #F3 F4 F6
1010backgroundActiveColor = #DB EA FE
1111
Original file line number Diff line number Diff line change @@ -58,10 +58,10 @@ npm run assets:build -- vue-quill
5858 if ( isRelease && assets . private ) return
5959 if ( ! assets . css . length ) return
6060 console . log (
61- chalk . cyan ( `\n>>>>>>>>>>>>>>>>>>>> BUILD ASSETS <<<<<<<<<<<<<<<<<<<<` )
61+ chalk . cyan ( `\n>>>>>>>>>>>>>>>>>>>> BUILD ASSETS <<<<<<<<<<<<<<<<<<<<\n ` )
6262 )
6363
64- await assets . css . forEach ( async ( css : any ) => {
64+ for ( const css of assets . css ) {
6565 const input = path . resolve ( pkgDir , css . input )
6666 const inputExt = path . extname ( input )
6767 const output = path . resolve ( pkgDir , css . output )
@@ -78,7 +78,7 @@ npm run assets:build -- vue-quill
7878 } else {
7979 console . log ( chalk . redBright ( `File extention not supported: ${ input } ` ) )
8080 }
81- } )
81+ }
8282 }
8383
8484 function checkAllSizes ( targets : string [ ] ) {
You can’t perform that action at this time.
0 commit comments