Skip to content

Commit 860d6ee

Browse files
authored
Fix dependency issues (#145)
* Test fix dep issue * Add step to list NPM dependencies for GH Actions * Manually pin version of @types/express-serve-static-core * Manually pin Lodash version * Remove overrides block in package.json
1 parent caf1185 commit 860d6ee

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ jobs:
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- run: npm install
25+
- run: npm list --depth=1
2526
- run: npm test

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@
2121
"dependencies": {
2222
"@types/body-parser": "^1.19.0",
2323
"@types/express": "4.17.3",
24+
"@types/express-serve-static-core": "4.17.28",
2425
"@types/glob": "^7.1.2",
25-
"@types/lodash": "^4.14.149",
26+
"@types/lodash": "4.14.149",
2627
"@types/node": "^14.0.13",
2728
"@types/prompts": "^2.0.3",
2829
"ajv": "^6.12.0",
@@ -35,20 +36,17 @@
3536
"glob": "^7.1.6",
3637
"googleapis": "47.0.0",
3738
"jsonc": "^2.0.0",
38-
"lodash": "^4.17.15",
39+
"lodash": "4.17.15",
3940
"open": "^7.0.2",
4041
"plaid": "^7.0.0",
4142
"prompts": "^2.3.1",
42-
"typescript": "^3.8.3",
43+
"typescript": "3.8.3",
4344
"typescript-json-schema": "^0.42.0",
4445
"yargs": "^15.1.0"
4546
},
4647
"devDependencies": {
4748
"prettier": "^1.16.4"
4849
},
49-
"overrides": {
50-
"@types/express-serve-static-core": "4.17.30"
51-
},
5250
"description": "Automate your personal finances – for free, with no ads, and no data collection.",
5351
"repository": {
5452
"type": "git",

0 commit comments

Comments
 (0)