Skip to content

Commit 9d4359a

Browse files
committed
chore: cleanup old config
1 parent 21daae9 commit 9d4359a

File tree

4 files changed

+13781
-11749
lines changed

4 files changed

+13781
-11749
lines changed

.babelrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"@babel/typescript"
1212
],
1313
"plugins": [
14-
"@babel/plugin-proposal-class-properties",
1514
"@babel/plugin-transform-runtime"
1615
]
1716
}

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
175175
function 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
}))

0 commit comments

Comments
 (0)