Skip to content

Commit

Permalink
Bump ts-loader from 4.5.0 to 6.0.1 (grpc#444)
Browse files Browse the repository at this point in the history
* Bump ts-loader from 4.5.0 to 6.0.1

Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 4.5.0 to 6.0.1.
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v4.5.0...v6.0.1)

Signed-off-by: dependabot[bot] <support@dependabot.com>

* Fix out declaration output path
  • Loading branch information
dependabot-preview[bot] authored and jonny-improbable committed May 24, 2019
1 parent 3441f68 commit 68b8d17
Show file tree
Hide file tree
Showing 7 changed files with 222 additions and 34 deletions.
73 changes: 65 additions & 8 deletions client/grpc-web-react-example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/grpc-web-react-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@types/google-protobuf": "^3.2.5",
"concurrently": "^4.1.0",
"ts-loader": "^4.5.0",
"ts-loader": "^6.0.1",
"ts-protoc-gen": "0.9.0",
"typescript": "3.4.5",
"webpack": "^4.17.2",
Expand Down
108 changes: 92 additions & 16 deletions client/grpc-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/grpc-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@types/google-protobuf": "^3.2.5",
"@types/node": "^7.0.5",
"google-protobuf": "^3.2.0",
"ts-loader": "^4.5.0",
"ts-loader": "^6.0.1",
"typescript": "3.4.5",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
Expand Down
4 changes: 2 additions & 2 deletions client/grpc-web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"alwaysStrict": true,
"sourceMap": true,
"declaration": true,
"declarationDir": "typings",
"declarationDir": "./dist/typings",
"target": "es5",
"removeComments": true,
"noImplicitReturns": true,
Expand All @@ -13,7 +13,7 @@
"strictNullChecks": true,
"stripInternal": true,
"noFallthroughCasesInSwitch": true,
"outDir": "build",
"outDir": "dist",
"noEmitOnError": true
},
"types": [
Expand Down
Loading

0 comments on commit 68b8d17

Please sign in to comment.