Skip to content

Commit 1a522f7

Browse files
committed
Other: Update dependencies
1 parent a063171 commit 1a522f7

20 files changed

+4107
-2220
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ node_js:
66
- 4.3.2
77
- 6
88
- 8
9+
- 10
910
branches:
1011
only: master
1112
script: npm test && npm run bench

cli/targets/proto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function escape(str) {
7070
return str.replace(/[\\"']/g, "\\$&")
7171
.replace(/\r/g, "\\r")
7272
.replace(/\n/g, "\\n")
73-
.replace(/\u0000/g, "\\0");
73+
.replace(/\u0000/g, "\\0"); // eslint-disable-line no-control-regex
7474
}
7575

7676
function value(v) {

config/eslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"no-undefined": 0, // produces shorter code when testing against this
102102
"no-use-before-define": 0, // can actually be used for a better overview, i.e. with module.exports
103103
"no-unused-vars": 1, // a warning is sufficient
104-
104+
105105
// Node.js and CommonJS
106106
"callback-return": 1,
107107
"global-require": 0, // only way to resolve cyclic references

dist/light/protobuf.js

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

dist/light/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/light/protobuf.min.js

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

dist/light/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/minimal/protobuf.js

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

dist/minimal/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/minimal/protobuf.min.js

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

0 commit comments

Comments
 (0)