Skip to content

Commit

Permalink
Explicit dependency on @typescript-eslint/parser
Browse files Browse the repository at this point in the history
  • Loading branch information
marques-work committed Nov 23, 2022
1 parent 223109c commit bb264ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
"test": "mocha --require ts-node/register --watch-extensions ts,tsx \"spec/**/*_spec.{ts,tsx}\""
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.7",
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript-formatter": "^7.2.2",
"typescript": "^4.9.3"
"typescript": "^4.9.3",
"typescript-formatter": "^7.2.2"
}
}
4 changes: 2 additions & 2 deletions scripts/update-package-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ function update(dict) {
});
}

update(manifest.dependencies);
update(manifest.devDependencies);
update(manifest.dependencies || {});
update(manifest.devDependencies || {});

if (opts["update-optional-dependencies"]) {
update(manifest.optionalDependencies);
Expand Down

0 comments on commit bb264ee

Please sign in to comment.