Skip to content

Update dependency uuid to v10 #167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/react-pouchdb-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stanlemon/react-pouchdb-example",
"version": "0.1.116",
"version": "0.1.117",
"description": "A react app using pouchdb built in typescript",
"author": "Stan Lemon <stanlemon@users.noreply.github.com",
"license": "MIT",
Expand Down Expand Up @@ -29,14 +29,14 @@
"pouchdb": "^9.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^9.0.1"
"uuid": "^10.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/node": "^20.14.10",
"@types/pouchdb": "^6.4.2",
"@types/uuid": "^9.0.8",
"@types/uuid": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"pouchdb-adapter-memory": "^9.0.0"
}
Expand Down
87 changes: 55 additions & 32 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions packages/server-with-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stanlemon/server-with-auth",
"version": "0.3.14",
"version": "0.3.15",
"description": "A basic express web server setup with authentication baked in.",
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
Expand Down Expand Up @@ -29,7 +29,7 @@
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"uuid": "^9.0.1"
"uuid": "^10.0.0"
},
"devDependencies": {
"@stanlemon/eslint-config": "*",
Expand Down
2 changes: 2 additions & 0 deletions packages/webdev/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ module.exports = {
moduleFileExtensions: ["js", "jsx", "ts", "tsx"],
moduleNameMapper: {
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
// Force module uuid to resolve with the CJS entry point, because Jest does not support package.json.exports. See https://github.com/uuidjs/uuid/issues/451
uuid: require.resolve("uuid"),
},
testPathIgnorePatterns: ["/node_modules/", "/dist/"],
coverageDirectory: "coverage",
Expand Down
Loading