Skip to content

Commit b1baad6

Browse files
Robert PallasWonderPanda
authored andcommitted
fix(discovery): add lodash as dependency
When `lodash` is not dependency of the Nest based app production installed start fails as `lodash` is not found (`Cannot find module 'lodash'`) - add `lodash` as dependency - update bugs, repo & homepage urls
1 parent 5aa23aa commit b1baad6

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

packages/discovery/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"modules"
99
],
1010
"author": "Jesse Carter <jesse.r.carter@gmail.com>",
11-
"homepage": "https://github.com/WonderPanda/nestjs-plus#readme",
11+
"homepage": "https://github.com/golevelup/nestjs/blob/master/packages/discovery/README.md",
1212
"license": "MIT",
1313
"main": "lib/index.js",
1414
"typings": "lib/index.d.ts",
@@ -24,15 +24,18 @@
2424
},
2525
"repository": {
2626
"type": "git",
27-
"url": "git+https://github.com/WonderPanda/nestjs-plus.git"
27+
"url": "git+https://github.com/golevelup/nestjs.git"
2828
},
2929
"scripts": {
3030
"build": "tsc --build tsconfig.build.json",
3131
"build:watch": "tsc --build tsconfig.build.json --watch",
3232
"test": "jest"
3333
},
34+
"dependencies": {
35+
"lodash": "^4.17.15"
36+
},
3437
"bugs": {
35-
"url": "https://github.com/WonderPanda/nestjs-plus/issues"
38+
"url": "https://github.com/golevelup/nestjs/issues"
3639
},
3740
"jest": {
3841
"moduleFileExtensions": [

0 commit comments

Comments
 (0)