Skip to content

Commit fde56c0

Browse files
committed
Improved bytes field support, also fixes #606; Other: Refactored some internal utility away
1 parent 0c03f32 commit fde56c0

38 files changed

+989
-1002
lines changed

Diff for: README.md

+3
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,10 @@ Consolidates imports and converts between file formats.
361361
--no-encode Does not generate encode functions.
362362
--no-decode Does not generate decode functions.
363363
--no-verify Does not generate verify functions.
364+
--no-convert Does not generate convert functions like asJSON and from.
364365
--no-delimited Does not generate delimited encode/decode functions.
366+
--no-beautify Does not beautify generated code.
367+
--no-comments Does not output any JSDoc comments.
365368
366369
usage: pbjs [options] file1.proto file2.json ...
367370
```

Diff for: cli/targets/static.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ function beautify(code) {
166166
mangle: false,
167167
output: {
168168
beautify: true,
169-
bracketize: true,
170-
screw_ie8: false
169+
bracketize: true
171170
}
172171
}
173172
).code.replace(/ {4}/g, "\t");

0 commit comments

Comments
 (0)