Skip to content

Commit 4d091d4

Browse files
committed
Fix building default dist files with explicit runtime=false
1 parent 74b2c5c commit 4d091d4

File tree

9 files changed

+34
-24
lines changed

9 files changed

+34
-24
lines changed

dist/protobuf.js

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

dist/protobuf.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/protobuf.min.js

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

dist/protobuf.min.js.gz

42 Bytes
Binary file not shown.

dist/protobuf.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/runtime/protobuf.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/runtime/protobuf.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/runtime/protobuf.min.js.gz

0 Bytes
Binary file not shown.

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ gulp.task("default", [
88
"bundle-development-runtime", "bundle-production-runtime", "gzip-production-runtime"
99
]);
1010

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

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

0 commit comments

Comments
 (0)