Skip to content

Commit

Permalink
update dependencies (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
tatethurston authored Apr 25, 2022
1 parent 68b8dbc commit 6eba6d6
Show file tree
Hide file tree
Showing 4 changed files with 607 additions and 879 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,24 @@
"sideEffects": false,
"dependencies": {
"@types/google-protobuf": "^3.15.3",
"google-protobuf": "^3.19.3",
"google-protobuf": "^3.20.1",
"prettier": "^2.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.12",
"@types/node": "^17.0.27",
"@types/prettier": "^2.4.3",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-loader": "^8.2.3",
"@types/react": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-loader": "^8.2.5",
"codecov": "^3.8.3",
"eslint": "^8.11.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.1.0",
"husky": "4.3.8",
"jest": "^27.4.7",
"jest": "^28.0.0",
"prettier-package-json": "^2.1.3",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
Expand Down
2 changes: 1 addition & 1 deletion public.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"types": "index.d.ts",
"dependencies": {
"@types/google-protobuf": "^3.15.3",
"google-protobuf": "^3.19.3",
"google-protobuf": "^3.20.1",
"prettier": "^2.6.0"
},
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/test-serialization/message.pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const Baz = {
case 1: {
return "BAR";
}
// unknown values are preserved as numbers. this occurs when new enum values are introduced and the generated code is out of date.
// unknown values are preserved as the argument number. This occurs when new enum values are introduced and the generated code is out of date.
default: {
return i as unknown as Baz;
}
Expand All @@ -99,7 +99,7 @@ export const Baz = {
case "BAR": {
return 1;
}
// unknown values are preserved as numbers. this occurs when new enum values are introduced and the generated code is out of date.
// unknown values are preserved as the argument string. This occurs when new enum values are introduced and the generated code is out of date.
default: {
return i as unknown as number;
}
Expand Down
Loading

0 comments on commit 6eba6d6

Please sign in to comment.