Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovilia committed Mar 7, 2018
0 parents commit 6b92e38
Show file tree
Hide file tree
Showing 11 changed files with 5,471 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules

1 change: 1 addition & 0 deletions dist/index-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions dist/lib/tinycolor-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/lib/zepto.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/lib/zrender.min.js

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
var gulp = require('gulp');
var minify = require('gulp-minify');

gulp.task('compress', function() {
gulp.src('src/*.js')
.pipe(minify({
noSource: true
}))
.pipe(gulp.dest('dist'));
});
Loading

0 comments on commit 6b92e38

Please sign in to comment.