Skip to content

Commit

Permalink
fix problematic deps for snyk
Browse files Browse the repository at this point in the history
  • Loading branch information
sauntimo committed Oct 8, 2024
1 parent 913e8f4 commit 14334a7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 48 deletions.
3 changes: 2 additions & 1 deletion build/webpack/config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ config.module.rules = ([
'css-loader',
'stylus-loader'
]
}
},
{ test: /\.m?js/, resolve: { fullySpecified: false } }
]);


Expand Down
66 changes: 23 additions & 43 deletions package-lock.json

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

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"auth0-extension-ui": "1.1.7",
"auth0-extension-ui-redux": "git+https://github.com/auth0-extensions/auth0-extension-ui-redux",
"aws-sdk": "2.1416.0",
"axios": "^1.6.5",
"axios": "1.7.4",
"blipp": "^4.0.2",
"ejs": "^3.1.9",
"hapi-auth-jwt2": "10.5.1",
Expand All @@ -90,7 +90,8 @@
"node-uuid": "^1.4.8",
"npm": "10.4.0",
"superagent": "^8.0.9",
"winston": "^3.10.0"
"winston": "^3.10.0",
"jose": "4.15.5"
},
"devDependencies": {
"@babel/core": "^7.23.9",
Expand Down Expand Up @@ -210,6 +211,8 @@
"joi": "17.12.1",
"@hapi/hoek": "^9.3.0",
"@hapi/validate": "1.1.3",
"@hapi/bounce": "2.0.0"
"@hapi/bounce": "2.0.0",
"axios": "1.7.4",
"jose":"4.15.5"
}
}
2 changes: 1 addition & 1 deletion tests/integration/group.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const parallelGroups = [ ...new Array(20) ].map(() => ({
description: faker.lorem.sentence()
}));

describe.only('groups', () => {
describe('groups', () => {
before(async () => {
accessToken = await getAccessToken();

Expand Down

0 comments on commit 14334a7

Please sign in to comment.