Skip to content

Commit

Permalink
Fix building default dist files with explicit runtime=false
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Dec 13, 2016
1 parent 74b2c5c commit 4d091d4
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 24 deletions.
38 changes: 24 additions & 14 deletions dist/protobuf.js

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

2 changes: 1 addition & 1 deletion dist/protobuf.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/protobuf.min.js

Large diffs are not rendered by default.

Binary file modified dist/protobuf.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/protobuf.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/runtime/protobuf.js

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

2 changes: 1 addition & 1 deletion dist/runtime/protobuf.min.js

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

Binary file modified dist/runtime/protobuf.min.js.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions gulpfile.js
Expand Up @@ -8,8 +8,8 @@ gulp.task("default", [
"bundle-development-runtime", "bundle-production-runtime", "gzip-production-runtime"
]);

gulp.task("bundle-development", bundle.bind(this, true ));
gulp.task("bundle-production" , bundle.bind(this, false));
gulp.task("bundle-development", bundle.bind(this, true , false));
gulp.task("bundle-production" , bundle.bind(this, false, false));

gulp.task("bundle-development-runtime", bundle.bind(this, true , true));
gulp.task("bundle-production-runtime" , bundle.bind(this, false, true));
Expand Down

0 comments on commit 4d091d4

Please sign in to comment.