Skip to content

Commit

Permalink
fix #88
Browse files Browse the repository at this point in the history
  • Loading branch information
mateogianolio committed Dec 21, 2016
1 parent 9032801 commit 1e830e1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
File renamed without changes.
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
(function() {
'use strict';

var pkg = require('./package');
var gulp = require('gulp'),
streamify = require('gulp-streamify'),
uglify = require('gulp-uglify'),
Expand All @@ -20,7 +19,7 @@
];

return browserify({ entries: files }).bundle()
.pipe(source('vectorious-' + pkg.version + '.min.js'))
.pipe(source('vectorious.min.js'))
.pipe(streamify(uglify()))
.pipe(gulp.dest('./dist'));
});
Expand Down

0 comments on commit 1e830e1

Please sign in to comment.