mirror of https://github.com/grpc/grpc-node.git
grpc-js-core: make semver a prod dependency
semver is now used in index.ts, meaning that it needs to be included in the "dependencies" section of the package.json, otherwise deployments that use npm i --production will fail.
This commit is contained in:
parent
48e4048748
commit
2f6484f63d
|
@ -20,7 +20,6 @@
|
|||
"@types/node": "^10.5.4",
|
||||
"clang-format": "^1.0.55",
|
||||
"gts": "^0.5.1",
|
||||
"semver": "^5.5.0",
|
||||
"typescript": "~2.7.0"
|
||||
},
|
||||
"contributors": [
|
||||
|
@ -42,7 +41,8 @@
|
|||
"posttest": "npm run check"
|
||||
},
|
||||
"dependencies": {
|
||||
"lodash": "^4.17.4"
|
||||
"lodash": "^4.17.4",
|
||||
"semver": "^5.5.0"
|
||||
},
|
||||
"files": [
|
||||
"build/src/*.{js,d.ts}"
|
||||
|
|
Loading…
Reference in New Issue