Skip to content

Commit

Permalink
fix(utils): add missing esbuild dependency (peer of bundle-require)
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Apr 9, 2024
1 parent 2490f92 commit b2ec27e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"bundle-require": "^4.0.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"esbuild": "^0.19.2",
"multi-progress-bars": "^5.0.3",
"parse-lcov": "^1.0.4",
"simple-git": "^3.20.0",
Expand Down Expand Up @@ -96,7 +97,6 @@
"commitlint-plugin-tense": "^1.0.2",
"conventional-changelog-angular": "^7.0.0",
"dotenv": "^16.3.1",
"esbuild": "^0.19.2",
"eslint": "~8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^2.0.0",
Expand Down
7 changes: 6 additions & 1 deletion packages/utils/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
"files": ["*.json"],
"parser": "jsonc-eslint-parser",
"rules": {
"@nx/dependency-checks": ["error"]
"@nx/dependency-checks": [
"error",
{
"ignoredDependencies": ["esbuild"] // esbuild is a peer dependency of bundle-require
}
]
}
}
]
Expand Down
1 change: 1 addition & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"dependencies": {
"@code-pushup/models": "0.35.0",
"bundle-require": "^4.0.1",
"esbuild": "^0.19.2",
"chalk": "^5.3.0",
"@isaacs/cliui": "^8.0.2",
"simple-git": "^3.20.0",
Expand Down

0 comments on commit b2ec27e

Please sign in to comment.