Skip to content

Commit 965b35c

Browse files
committed
Added file renaming
1 parent 5f40554 commit 965b35c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

gulpfile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
var gulp = require('gulp');
2+
var rename = require('gulp-rename');
23
var uglify = require('gulp-uglify');
34

45
gulp.task('prod', function () {
56

67
gulp.src('explode_shape_layer.jsx')
8+
.pipe(rename('explode_shape_layer.min.jsx'))
79
.pipe(uglify())
810
.pipe(gulp.dest('dist/'))
911

package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)