Skip to content

Commit

Permalink
fix(security): patch braces dependency vulnerabilities (#1117)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudbesnier committed Jun 20, 2024
1 parent 550c440 commit 296bc62
Show file tree
Hide file tree
Showing 4 changed files with 1,439 additions and 2,170 deletions.
8 changes: 5 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ module.exports = {
plugins: [
'sonarjs',
],
ignorePatterns: [
'dist/**'
],
env: {
node: true,
},
ignorePatterns: [
'dist/**',
'.eslintrc.js',
'jest.config.js'
],
rules: {
'implicit-arrow-linebreak': 0,
'import/no-extraneous-dependencies': [
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module.exports = {
'src/**/*.{ts,js}',
],
setupFilesAfterEnv: [
'jest-extended',
'jest-extended/all',
],
};
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.5",
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-optional-chaining": "7.14.5",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-arrow-functions": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.6",
"@babel/register": "7.15.3",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.4",
"@babel/register": "7.18.9",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@semantic-release/changelog": "6.0.1",
Expand All @@ -58,8 +58,8 @@
"eslint-plugin-jest": "23.0.4",
"eslint-plugin-sonarjs": "0.5.0",
"husky": "7.0.4",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"jest": "29.1.1",
"jest-extended": "3.1.0",
"lint-staged": "12.3.7",
"mysql2": "3.9.8",
"onchange": "6.0.0",
Expand Down
Loading

0 comments on commit 296bc62

Please sign in to comment.