-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jspb: Support full 64bit integer ranges
The jspb wrapper makes use of the google-protobuf javascript library to encode and decode the protobuf wire format. This commit adds support for encoding and decoding the full 64bit integer ranges to and from the GopherJS types.
- Loading branch information
1 parent
ba5c196
commit 7e36e40
Showing
10 changed files
with
643 additions
and
111 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
const webpack = require("webpack"); | ||
|
||
module.exports = { | ||
entry: "./node_modules/google-protobuf/google-protobuf.js", | ||
output: { | ||
filename: "jspb.inc.js", | ||
libraryTarget: "this", | ||
}, | ||
plugins: [ | ||
new webpack.optimize.UglifyJsPlugin() | ||
] | ||
entry: "./node_modules/google-protobuf/google-protobuf.js", | ||
output: { | ||
filename: "jspb.inc.js", | ||
libraryTarget: "this", | ||
path: __dirname, | ||
}, | ||
optimization: { | ||
minimize: true | ||
}, | ||
mode: "production", | ||
}; |
Oops, something went wrong.