Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add missing deps to cli helpers #7117

Merged
merged 2 commits into from
Dec 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions packages/cli-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,26 @@
"test:watch": "yarn test --watch"
},
"dependencies": {
"@babel/core": "7.20.5",
"@babel/runtime-corejs3": "7.20.6",
"@redwoodjs/internal": "3.2.0",
"@redwoodjs/telemetry": "3.2.0",
"chalk": "4.1.2",
"core-js": "3.26.1",
"listr2": "5.0.6"
"execa": "5.1.1",
"listr2": "5.0.6",
"lodash.memoize": "4.1.2",
"pascalcase": "1.0.0",
"prettier": "2.8.1",
"prompts": "2.4.2",
"terminal-link": "2.1.1"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.5",
"@types/react": "17.0.52",
"@types/lodash.memoize": "4.1.7",
"@types/pascalcase": "1.0.1",
"@types/yargs": "17.0.17",
"jest": "29.3.1",
"react": "17.0.2",
"typescript": "4.7.4"
},
"gitHead": "3905ed045508b861b495f8d5630d76c7a157d8f1"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-helpers/src/lib/paths.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { memoize } from 'lodash'
import memoize from 'lodash.memoize'

import {
getPaths as getRedwoodPaths,
Expand Down
5 changes: 4 additions & 1 deletion packages/cli-helpers/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"outDir": "dist"
},
"include": ["src"],
"references": [{ "path": "../telemetry" }]
"references": [
{ "path": "../internal" },
{ "path": "../telemetry" }
]
}
24 changes: 21 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7024,12 +7024,21 @@ __metadata:
"@babel/cli": 7.19.3
"@babel/core": 7.20.5
"@babel/runtime-corejs3": 7.20.6
"@redwoodjs/internal": 3.2.0
"@redwoodjs/telemetry": 3.2.0
"@types/react": 17.0.52
"@types/lodash.memoize": 4.1.7
"@types/pascalcase": 1.0.1
"@types/yargs": 17.0.17
chalk: 4.1.2
core-js: 3.26.1
execa: 5.1.1
jest: 29.3.1
listr2: 5.0.6
react: 17.0.2
lodash.memoize: 4.1.2
pascalcase: 1.0.0
prettier: 2.8.1
prompts: 2.4.2
terminal-link: 2.1.1
typescript: 4.7.4
languageName: unknown
linkType: soft
Expand Down Expand Up @@ -9666,6 +9675,15 @@ __metadata:
languageName: node
linkType: hard

"@types/lodash.memoize@npm:4.1.7":
version: 4.1.7
resolution: "@types/lodash.memoize@npm:4.1.7"
dependencies:
"@types/lodash": "*"
checksum: 979a59dbbae968a03834fdb544dc5ddd34620a2912d5030c997a1aa919326425a900c93bc69554b2a873cf54f09b4dd2752b3a1c29ab4bffac5983113c58b1b5
languageName: node
linkType: hard

"@types/lodash.merge@npm:4.6.7":
version: 4.6.7
resolution: "@types/lodash.merge@npm:4.6.7"
Expand Down Expand Up @@ -22371,7 +22389,7 @@ __metadata:
languageName: node
linkType: hard

"lodash.memoize@npm:^4.1.2":
"lodash.memoize@npm:4.1.2, lodash.memoize@npm:^4.1.2":
version: 4.1.2
resolution: "lodash.memoize@npm:4.1.2"
checksum: c8713e51eccc650422716a14cece1809cfe34bc5ab5e242b7f8b4e2241c2483697b971a604252807689b9dd69bfe3a98852e19a5b89d506b000b4187a1285df8
Expand Down