File tree Expand file tree Collapse file tree 4 files changed +13781
-11749
lines changed
Expand file tree Collapse file tree 4 files changed +13781
-11749
lines changed Original file line number Diff line number Diff line change 1111 " @babel/typescript"
1212 ],
1313 "plugins" : [
14- " @babel/plugin-proposal-class-properties" ,
1514 " @babel/plugin-transform-runtime"
1615 ]
1716}
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ function dataURI () {
152152 . pipe ( $ . concat ( 'emojify-emoticons.css' ) )
153153 . pipe ( $ . replace ( '.emoji-+1' , '.emoji-plus1' ) )
154154 . pipe ( gulp . dest ( paths . dist . styles . dataURI ) )
155- . pipe ( $ . minifyCss ( ) )
155+ . pipe ( $ . cleanCSS ( ) )
156156 . pipe ( $ . rename ( {
157157 suffix : '.min'
158158 } ) )
@@ -164,7 +164,7 @@ function dataURI () {
164164 . pipe ( $ . concat ( 'emojify.css' ) )
165165 . pipe ( $ . replace ( '.emoji-+1' , '.emoji-plus1' ) )
166166 . pipe ( gulp . dest ( paths . dist . styles . dataURI ) )
167- . pipe ( $ . minifyCss ( ) )
167+ . pipe ( $ . cleanCSS ( ) )
168168 . pipe ( $ . rename ( {
169169 suffix : '.min'
170170 } ) )
@@ -175,7 +175,7 @@ exports.dataURI = dataURI
175175function copyStyles ( ) {
176176 return gulp . src ( './src/css/basic/*.css' )
177177 . pipe ( gulp . dest ( paths . dist . styles . basic ) )
178- . pipe ( $ . minifyCss ( ) )
178+ . pipe ( $ . cleanCSS ( ) )
179179 . pipe ( $ . rename ( {
180180 suffix : '.min'
181181 } ) )
You can’t perform that action at this time.
0 commit comments