Skip to content

Commit 371a71f

Browse files
committed
Merge pull request jakemmarsh#113 from jakemmarsh/fix-views-task
ensure all asset tasks are done before browserify
2 parents 46d18e9 + 58d9e51 commit 371a71f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gulp/tasks/production.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import gulp from 'gulp';
44
import runSequence from 'run-sequence';
55

66
gulp.task('prod', ['clean'], function(cb) {
7-
7+
88
cb = cb || function() {};
99

1010
global.isProd = true;
1111

12-
runSequence(['styles', 'images', 'fonts', 'views', 'browserify'], 'gzip', cb);
12+
runSequence(['styles', 'images', 'fonts', 'views'], 'browserify', 'gzip', cb);
1313

1414
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-gulp-browserify-boilerplate",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"author": "Jake Marsh <[email protected]>",
55
"description": "Boilerplate using AngularJS, SASS, Gulp, and Browserify while also utilizing best practices.",
66
"repository": {

0 commit comments

Comments
 (0)