From 252445376a5293eb977d0dab31fb02a15d64716c Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 21 Jun 2023 14:02:43 -0500 Subject: [PATCH 1/3] deps: upgrade `uuid` to v9.0.0 for jest+esm issue Issue is described well here: https://github.com/microsoft/accessibility-insights-web/pull/5421#issuecomment-1109168149 They originally fixed the issue with a custom resolver (https://github.com/microsoft/accessibility-insights-web/pull/5421/commits/9ad4e618019298d82732d49d00aafb846fb6bac7#diff-10ce3d2c4d812be4f9bbaceb999b48c91538e4ccfc23dc585c59deb316d0d689), but then replaced that workaround with an upgrade to uuid v9.0.0 when it became available (https://github.com/microsoft/accessibility-insights-web/commit/6d1c3a3f9fca1b6da0448cd887bb7df4252a99da). uuid v9.0.0 https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md#900-2022-09-05 --- packages/commerce-server/package.json | 1 + packages/database/package.json | 2 +- packages/database/src/prisma-api.ts | 10 +-- pnpm-lock.yaml | 97 ++++++++++++++++----------- 4 files changed, 66 insertions(+), 44 deletions(-) diff --git a/packages/commerce-server/package.json b/packages/commerce-server/package.json index 57a9c2df6b..435ac15232 100644 --- a/packages/commerce-server/package.json +++ b/packages/commerce-server/package.json @@ -37,6 +37,7 @@ "@types/node": "^18.16.13", "eslint": "^8.12.0", "eslint-config-custom": "workspace:*", + "jest": "^29.5.0", "rimraf": "^3.0.2", "tsup": "^5.11.13", "tsx": "^3.7.1", diff --git a/packages/database/package.json b/packages/database/package.json index fedb4f938e..6071b2c3ea 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -21,7 +21,7 @@ }, "dependencies": { "@prisma/client": "^4.5.0", - "uuid": "^8.3.2" + "uuid": "^9.0.0" }, "devDependencies": { "@skillrecordings/tsconfig": "workspace:*", diff --git a/packages/database/src/prisma-api.ts b/packages/database/src/prisma-api.ts index 79f72ffe58..359f0d5e07 100644 --- a/packages/database/src/prisma-api.ts +++ b/packages/database/src/prisma-api.ts @@ -1,5 +1,5 @@ import {Context, defaultContext} from './context' -import {v4} from 'uuid' +import {v4 as uuidv4} from 'uuid' import {Prisma, Purchase, PurchaseUserTransferState, User} from '@prisma/client' type SDKOptions = {ctx?: Context} @@ -416,8 +416,8 @@ export function getSdk( // we are using uuids so we can generate this! // this is needed because the following actions // are dependant - const merchantChargeId = v4() - const purchaseId = v4() + const merchantChargeId = uuidv4() + const purchaseId = uuidv4() const merchantCharge = ctx.prisma.merchantCharge.create({ data: { @@ -473,7 +473,7 @@ export function getSdk( if (isBulkPurchase) { bulkCouponId = - existingBulkCoupon !== null ? existingBulkCoupon.id : v4() + existingBulkCoupon !== null ? existingBulkCoupon.id : uuidv4() // Create or Update Bulk Coupon Record if (existingBulkCoupon) { @@ -503,7 +503,7 @@ export function getSdk( } } - const merchantSessionId = v4() + const merchantSessionId = uuidv4() const merchantSession = ctx.prisma.merchantSession.create({ data: { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2190e21378..bc3a585b25 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -261,7 +261,7 @@ importers: prettier: 2.7.1 prettier-plugin-tailwindcss: 0.2.5_prettier@2.7.1 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -468,7 +468,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -721,7 +721,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -939,7 +939,7 @@ importers: stream-chain: 2.2.5 stream-json: 1.7.5 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0_ts-node@10.9.1 + tailwindcss: 3.3.0_3fojqsmttcn75cbnzsztj3o6qa ts-node: 10.9.1_m5zxhvpm775j2y7tyimpt7bfse typescript: 5.1.1-rc uuid: 8.3.2 @@ -1492,7 +1492,7 @@ importers: postcss: 8.4.23 prettier-plugin-tailwindcss: 0.2.5 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -1731,7 +1731,7 @@ importers: prettier: 2.8.8 prettier-plugin-tailwindcss: 0.2.5_prettier@2.8.8 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -2066,7 +2066,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 18.2.0_react@18.2.0 - tailwindcss: 3.3.0_ts-node@10.9.1 + tailwindcss: 3.3.0_3fojqsmttcn75cbnzsztj3o6qa ts-node: 10.9.1_m5zxhvpm775j2y7tyimpt7bfse typescript: 5.1.1-rc webpack: 5.73.0 @@ -2286,7 +2286,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -2475,7 +2475,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -2668,7 +2668,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -2971,7 +2971,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -3316,7 +3316,7 @@ importers: prettier: 2.7.1 prettier-plugin-tailwindcss: 0.2.5_prettier@2.7.1 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -3431,7 +3431,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -3698,7 +3698,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 typescript: 5.1.1-rc webpack: 5.73.0 @@ -3793,6 +3793,7 @@ importers: date-fns: ^2.28.0 eslint: ^8.12.0 eslint-config-custom: workspace:* + jest: ^29.5.0 lodash: ^4.17.21 rimraf: ^3.0.2 stripe: ^8.186.1 @@ -3818,6 +3819,7 @@ importers: '@types/node': 18.16.13 eslint: 8.26.0 eslint-config-custom: link:../eslint-config-custom + jest: 29.5.0_@types+node@18.16.13 rimraf: 3.0.2 tsup: 5.12.9_typescript@5.1.1-rc tsx: 3.8.0 @@ -4019,10 +4021,10 @@ importers: tsup: ^5.11.13 tsx: ^3.7.1 typescript: 5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 dependencies: '@prisma/client': 4.5.0_prisma@4.5.0 - uuid: 8.3.2 + uuid: 9.0.0 devDependencies: '@skillrecordings/tsconfig': link:../tsconfig '@types/node': 18.16.13 @@ -14297,7 +14299,7 @@ packages: tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1' dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.3.0_ts-node@10.9.1 + tailwindcss: 3.3.0_3fojqsmttcn75cbnzsztj3o6qa dev: false /@tailwindcss/typography/0.5.9_tailwindcss@3.3.0: @@ -14309,7 +14311,7 @@ packages: lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 /@tanstack/match-sorter-utils/8.7.6: resolution: {integrity: sha512-2AMpRiA6QivHOUiBpQAVxjiHAA68Ei23ZUMNaRJrN6omWiSFLoYrxGcT6BXtuzp0Jw4h6HZCmGGIM/gbwebO2A==} @@ -16129,13 +16131,14 @@ packages: '@ucast/mongo': 2.4.2 dev: false - /@uiw/codemirror-extensions-basic-setup/4.19.7_r5d3jlum5gwy6jsylajaj62gpe: + /@uiw/codemirror-extensions-basic-setup/4.19.7_b75jqe4w7qgjwbqfbsbdvntkte: resolution: {integrity: sha512-pk0JTFJAZOGxouBB1pdBtb59qKibO9DW4hER4VSFGBGW3TBDeXUwL/gKujhRpySHG2MtG09cgt4a3XOFIWwXTw==} peerDependencies: '@codemirror/autocomplete': '>=6.0.0' '@codemirror/commands': '>=6.0.0' '@codemirror/language': '>=6.0.0' '@codemirror/search': '>=6.0.0' + '@codemirror/state': '>=6.0.0' '@codemirror/view': '>=6.0.0' dependencies: '@codemirror/autocomplete': 6.4.0 @@ -16167,7 +16170,7 @@ packages: '@codemirror/state': 6.2.0 '@codemirror/theme-one-dark': 6.1.0 '@codemirror/view': 6.7.3 - '@uiw/codemirror-extensions-basic-setup': 4.19.7_r5d3jlum5gwy6jsylajaj62gpe + '@uiw/codemirror-extensions-basic-setup': 4.19.7_b75jqe4w7qgjwbqfbsbdvntkte codemirror: 6.0.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -17070,14 +17073,14 @@ packages: /axios/0.25.0: resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} dependencies: - follow-redirects: 1.15.2 + follow-redirects: 1.15.2_debug@2.6.9 transitivePeerDependencies: - debug /axios/0.26.1: resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} dependencies: - follow-redirects: 1.15.2 + follow-redirects: 1.15.2_debug@2.6.9 transitivePeerDependencies: - debug dev: false @@ -17094,7 +17097,7 @@ packages: /axios/1.4.0: resolution: {integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==} dependencies: - follow-redirects: 1.15.2 + follow-redirects: 1.15.2_debug@2.6.9 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -22582,6 +22585,7 @@ packages: peerDependenciesMeta: debug: optional: true + dev: false /follow-redirects/1.15.2_debug@2.6.9: resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} @@ -22593,7 +22597,6 @@ packages: optional: true dependencies: debug: 2.6.9 - dev: false /fontkit-next/1.8.3: resolution: {integrity: sha512-pa/vL114+ESn4Dokka7eIY+LtiMxyLRy+rnX4y6e+5rL8zDbUDoKzvFAE4LHVLaZY6hifuaut6z2Q4I1eawLvQ==} @@ -23002,7 +23005,7 @@ packages: create-error-class: 3.0.2 debug: 2.6.9 decompress-response: 6.0.0 - follow-redirects: 1.15.2 + follow-redirects: 1.15.2_debug@2.6.9 form-urlencoded: 2.0.9 into-stream: 3.1.0 is-plain-object: 2.0.4 @@ -23025,7 +23028,7 @@ packages: dependencies: debug: 4.3.4 decompress-response: 7.0.0 - follow-redirects: 1.15.2 + follow-redirects: 1.15.2_debug@2.6.9 into-stream: 6.0.0 is-plain-object: 5.0.0 is-retry-allowed: 2.2.0 @@ -29301,7 +29304,7 @@ packages: semver: 7.5.1 sift-string: 0.0.2 stringify-object: 4.0.1 - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 tmp-cache: 1.1.0 vscode-languageserver-textdocument: 1.0.7 transitivePeerDependencies: @@ -31302,7 +31305,6 @@ packages: postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.2 - dev: false /postcss-import/14.1.0_postcss@8.4.23: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} @@ -31323,6 +31325,14 @@ packages: postcss: 8.4.23 dev: true + /postcss-js/4.0.0: + resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.3.3 + dependencies: + camelcase-css: 2.0.1 + /postcss-js/4.0.0_postcss@8.4.23: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} @@ -31357,7 +31367,6 @@ packages: dependencies: lilconfig: 2.1.0 yaml: 1.10.2 - dev: true /postcss-load-config/3.1.4_3fojqsmttcn75cbnzsztj3o6qa: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} @@ -31488,6 +31497,14 @@ packages: postcss-selector-parser: 6.0.11 dev: true + /postcss-nested/6.0.0: + resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + dependencies: + postcss-selector-parser: 6.0.11 + /postcss-nested/6.0.0_postcss@8.4.23: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} @@ -36089,7 +36106,7 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: - tailwindcss: 3.3.0 + tailwindcss: 3.3.0_postcss@8.4.23 dev: false /tailwindcss-radix/2.8.0: @@ -36100,6 +36117,8 @@ packages: resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==} engines: {node: '>=12.13.0'} hasBin: true + peerDependencies: + postcss: ^8.0.9 dependencies: arg: 5.0.2 chokidar: 3.5.3 @@ -36116,10 +36135,10 @@ packages: object-hash: 3.0.0 picocolors: 1.0.0 postcss: 8.4.23 - postcss-import: 14.1.0_postcss@8.4.23 - postcss-js: 4.0.0_postcss@8.4.23 - postcss-load-config: 3.1.4_postcss@8.4.23 - postcss-nested: 6.0.0_postcss@8.4.23 + postcss-import: 14.1.0 + postcss-js: 4.0.0 + postcss-load-config: 3.1.4 + postcss-nested: 6.0.0 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -36128,7 +36147,7 @@ packages: transitivePeerDependencies: - ts-node - /tailwindcss/3.3.0_postcss@8.4.23: + /tailwindcss/3.3.0_3fojqsmttcn75cbnzsztj3o6qa: resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==} engines: {node: '>=12.13.0'} hasBin: true @@ -36152,7 +36171,7 @@ packages: postcss: 8.4.23 postcss-import: 14.1.0_postcss@8.4.23 postcss-js: 4.0.0_postcss@8.4.23 - postcss-load-config: 3.1.4_postcss@8.4.23 + postcss-load-config: 3.1.4_3fojqsmttcn75cbnzsztj3o6qa postcss-nested: 6.0.0_postcss@8.4.23 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 @@ -36162,10 +36181,12 @@ packages: transitivePeerDependencies: - ts-node - /tailwindcss/3.3.0_ts-node@10.9.1: + /tailwindcss/3.3.0_postcss@8.4.23: resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==} engines: {node: '>=12.13.0'} hasBin: true + peerDependencies: + postcss: ^8.0.9 dependencies: arg: 5.0.2 chokidar: 3.5.3 @@ -36184,7 +36205,7 @@ packages: postcss: 8.4.23 postcss-import: 14.1.0_postcss@8.4.23 postcss-js: 4.0.0_postcss@8.4.23 - postcss-load-config: 3.1.4_3fojqsmttcn75cbnzsztj3o6qa + postcss-load-config: 3.1.4_postcss@8.4.23 postcss-nested: 6.0.0_postcss@8.4.23 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 From 86cac57356785b26b151a9afd4620308c82fbd51 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 21 Jun 2023 15:47:38 -0500 Subject: [PATCH 2/3] deps: upgrade all uuid and types dependencies --- apps/colt-steele/package.json | 8 +- apps/epic-react/package.json | 4 +- apps/epic-web/package.json | 4 +- apps/protailwind/package.json | 4 +- apps/scriptkit/package.json | 6 +- apps/testing-javascript/package.json | 4 +- apps/total-typescript/package.json | 6 +- packages/database/package.json | 2 +- packages/skill-api/package.json | 4 +- pnpm-lock.yaml | 226 +++++++++++++-------------- 10 files changed, 132 insertions(+), 136 deletions(-) diff --git a/apps/colt-steele/package.json b/apps/colt-steele/package.json index f2987992fb..a2d7f138c3 100644 --- a/apps/colt-steele/package.json +++ b/apps/colt-steele/package.json @@ -71,7 +71,7 @@ "@types/lodash": "^4.14.194", "@types/shortid": "^0.0.29", "@types/speakingurl": "^13.0.3", - "@types/uuid": "8.3.4", + "@types/uuid": "^9.0.2", "@vercel/og": "^0.5.4", "aws-sdk": "2.1197.0", "axios": "^1.4.0", @@ -89,7 +89,6 @@ "next": "^13.4.3", "next-auth": "^4.22.1", "next-mdx-remote": "=4.2.0", - "remark-shiki-twoslash": "^3.1.3", "next-sitemap": "^3.0.5", "nodemailer": "^6.7.2", "nodemailer-postmark-transport": "^5.2.1", @@ -102,17 +101,18 @@ "react-refractor": "^2.1.7", "react-use": "^17.3.2", "react-wrap-balancer": "^0.2.4", + "remark-shiki-twoslash": "^3.1.3", "sanity": "^3.9.0", "sanity-plugin-cloudinary": "^1.1.1", - "sanity-plugin-taxonomy-manager": "^2.0.4", "sanity-plugin-markdown": "^4.1.0", + "sanity-plugin-taxonomy-manager": "^2.0.4", "shortid": "^2.2.16", "speakingurl": "^14.0.1", "styled-components": "^5.2", "superjson": "=1.11.0", "tailwind-merge": "^1.12.0", "tailwindcss-radix": "^2.8.0", - "uuid": "8.3.2", + "uuid": "^9.0.0", "yup": "^0.32.11", "zod": "^3.21.4" }, diff --git a/apps/epic-react/package.json b/apps/epic-react/package.json index b5f0038e88..80806f7369 100644 --- a/apps/epic-react/package.json +++ b/apps/epic-react/package.json @@ -118,7 +118,7 @@ "@types/react-dom": "^18.2.4", "@types/stream-chain": "^2.0.1", "@types/stream-json": "^1.7.3", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "csv-parser": "^3.0.0", "dotenv-flow": "^3.2.0", "eslint": "^8.19.0", @@ -137,7 +137,7 @@ "tailwindcss": "^3.3.0", "ts-node": "^10.9.1", "typescript": "5.1.1-rc", - "uuid": "^8.3.2", + "uuid": "^9.0.0", "webpack": "^5.73.0", "zod": "^3.21.4" }, diff --git a/apps/epic-web/package.json b/apps/epic-web/package.json index 9c232a98bf..a86db3c7b8 100644 --- a/apps/epic-web/package.json +++ b/apps/epic-web/package.json @@ -130,7 +130,7 @@ "tailwind-fluid-typography": "^1.3.0", "tailwind-merge": "^1.12.0", "tailwindcss-radix": "^2.8.0", - "uuid": "^8.3.2", + "uuid": "^9.0.0", "yup": "^0.32.11", "zod": "^3.21.4" }, @@ -161,7 +161,7 @@ "@types/remove-markdown": "^0.3.0", "@types/shortid": "^0.0.29", "@types/speakingurl": "^13.0.3", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "autoprefixer": "^10.4.12", "dotenv-flow": "^3.2.0", "eslint": "^8.19.0", diff --git a/apps/protailwind/package.json b/apps/protailwind/package.json index 4b24bf5692..bab9721ccf 100644 --- a/apps/protailwind/package.json +++ b/apps/protailwind/package.json @@ -140,7 +140,7 @@ "styled-components": "^5.2", "superjson": "=1.11.0", "tailwindcss-radix": "^2.8.0", - "uuid": "^8.3.2", + "uuid": "^9.0.0", "whatwg-fetch": "^3.6.2", "xstate": "=4.23.1", "yup": "^0.32.11", @@ -166,7 +166,7 @@ "@types/react": "^18.2.6", "@types/react-dom": "^18.2.4", "@types/shortid": "^0.0.29", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "autoprefixer": "^10.4.2", "eslint": "^8.19.0", "eslint-config-custom": "workspace:*", diff --git a/apps/scriptkit/package.json b/apps/scriptkit/package.json index 72930493fd..61093c2876 100644 --- a/apps/scriptkit/package.json +++ b/apps/scriptkit/package.json @@ -96,7 +96,7 @@ "@trpc/react-query": "=10.7.0", "@trpc/server": "=10.7.0", "@types/shortid": "^0.0.29", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "@vercel/og": "^0.5.4", "aws-sdk": "^2.1197.0", "axios": "^0.27.2", @@ -160,8 +160,8 @@ "remark-slug": "^7.0.1", "sanity": "^3.0.0", "sanity-plugin-cloudinary": "^1.0.1", - "sanity-plugin-taxonomy-manager": "^2.0.4", "sanity-plugin-markdown": "^4.1.0", + "sanity-plugin-taxonomy-manager": "^2.0.4", "sharp": "^0.30.7", "shortid": "^2.2.16", "simplebar-react": "^2.4.1", @@ -174,7 +174,7 @@ "tailwindcss-radix": "^2.8.0", "tree-cli": "^0.6.7", "twitter-lite": "^1.1.0", - "uuid": "^8.3.2", + "uuid": "^9.0.0", "yup": "^0.32.11", "zod": "^3.21.4" }, diff --git a/apps/testing-javascript/package.json b/apps/testing-javascript/package.json index 96c225e8f9..fbb25c12b2 100644 --- a/apps/testing-javascript/package.json +++ b/apps/testing-javascript/package.json @@ -82,7 +82,7 @@ "styled-jsx": "5.1.1", "superjson": "=1.11.0", "tailwindcss-radix": "^2.8.0", - "uuid": "^8.3.2", + "uuid": "^9.0.0", "zod": "^3.21.4" }, "devDependencies": { @@ -104,7 +104,7 @@ "@types/nprogress": "^0.2.0", "@types/react": "^18.2.6", "@types/react-dom": "^18.2.4", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "dotenv-flow": "^3.2.0", "eslint": "^8.19.0", "eslint-config-custom": "workspace:*", diff --git a/apps/total-typescript/package.json b/apps/total-typescript/package.json index b903e79f5e..b7bca303cf 100644 --- a/apps/total-typescript/package.json +++ b/apps/total-typescript/package.json @@ -124,8 +124,8 @@ "markdown-truncate": "^1.1.0", "micromark": "^3.1.0", "mjml": "^4.12.0", - "next": "^13.4.3", "mjml-react": "^2.0.8", + "next": "^13.4.3", "next-auth": "^4.22.1", "next-mdx-remote": "=4.2.0", "next-sitemap": "^3.0.5", @@ -163,7 +163,7 @@ "superjson": "=1.11.0", "tailwind-merge": "^1.12.0", "tailwindcss-radix": "^2.8.0", - "uuid": "^8.3.2", + "uuid": "^9.0.0", "whatwg-fetch": "^3.6.2", "ws": "^8.8.1", "xstate": "=4.23.1", @@ -193,7 +193,7 @@ "@types/react-scroll": "^1.8.3", "@types/remove-markdown": "^0.3.0", "@types/shortid": "^0.0.29", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "@types/ws": "^8.5.3", "autoprefixer": "^10.4.2", "eslint": "^8.19.0", diff --git a/packages/database/package.json b/packages/database/package.json index 6071b2c3ea..c7f93ced42 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -26,7 +26,7 @@ "devDependencies": { "@skillrecordings/tsconfig": "workspace:*", "@types/node": "^18.16.13", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "eslint": "^8.12.0", "eslint-config-custom": "workspace:*", "i": "^0.3.7", diff --git a/packages/skill-api/package.json b/packages/skill-api/package.json index ef0759d927..5118f7425c 100644 --- a/packages/skill-api/package.json +++ b/packages/skill-api/package.json @@ -54,7 +54,7 @@ "preact-render-to-string": "^5.2.0", "sanitize-html": "^2.7.0", "styled-jsx": "5.1.1", - "uuid": "^8.3.2" + "uuid": "^9.0.0" }, "devDependencies": { "@babel/cli": "^7.16.0", @@ -80,7 +80,7 @@ "@types/react": "^18.2.6", "@types/react-dom": "^18.2.4", "@types/sanitize-html": "^2.6.2", - "@types/uuid": "^8.3.4", + "@types/uuid": "^9.0.2", "autoprefixer": "^10.4.2", "babel-plugin-jsx-pragmatic": "^1.0.2", "babel-preset-preact": "^2.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bc3a585b25..ac3c1a4140 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -261,7 +261,7 @@ importers: prettier: 2.7.1 prettier-plugin-tailwindcss: 0.2.5_prettier@2.7.1 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -468,7 +468,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -544,7 +544,7 @@ importers: '@types/react-dom': ^18.2.4 '@types/shortid': ^0.0.29 '@types/speakingurl': ^13.0.3 - '@types/uuid': 8.3.4 + '@types/uuid': ^9.0.2 '@vercel/og': ^0.5.4 aws-sdk: 2.1197.0 axios: ^1.4.0 @@ -594,7 +594,7 @@ importers: tailwindcss: ^3.3.0 tailwindcss-radix: ^2.8.0 typescript: 5.1.1-rc - uuid: 8.3.2 + uuid: ^9.0.0 webpack: ^5.73.0 yup: ^0.32.11 zod: ^3.21.4 @@ -653,7 +653,7 @@ importers: '@types/lodash': 4.14.194 '@types/shortid': 0.0.29 '@types/speakingurl': 13.0.3 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 '@vercel/og': 0.5.4 aws-sdk: 2.1197.0 axios: 1.4.0 @@ -694,7 +694,7 @@ importers: superjson: 1.11.0 tailwind-merge: 1.12.0 tailwindcss-radix: 2.8.0 - uuid: 8.3.2 + uuid: 9.0.0 yup: 0.32.11 zod: 3.21.4 devDependencies: @@ -721,7 +721,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -792,7 +792,7 @@ importers: '@types/react-dom': ^18.2.4 '@types/stream-chain': ^2.0.1 '@types/stream-json': ^1.7.3 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 classnames: ^2.3.1 csv-parser: ^3.0.0 date-fns: ^2.28.0 @@ -831,7 +831,7 @@ importers: tailwindcss-radix: ^2.8.0 ts-node: ^10.9.1 typescript: 5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 webpack: ^5.73.0 yup: ^0.32.11 zod: ^3.21.4 @@ -923,7 +923,7 @@ importers: '@types/react-dom': 18.2.4 '@types/stream-chain': 2.0.1 '@types/stream-json': 1.7.3 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 csv-parser: 3.0.0 dotenv-flow: 3.2.0 eslint: 8.26.0 @@ -939,10 +939,10 @@ importers: stream-chain: 2.2.5 stream-json: 1.7.5 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0_3fojqsmttcn75cbnzsztj3o6qa + tailwindcss: 3.3.0_ts-node@10.9.1 ts-node: 10.9.1_m5zxhvpm775j2y7tyimpt7bfse typescript: 5.1.1-rc - uuid: 8.3.2 + uuid: 9.0.0 webpack: 5.73.0 zod: 3.21.4 @@ -1017,7 +1017,7 @@ importers: '@types/remove-markdown': ^0.3.0 '@types/shortid': ^0.0.29 '@types/speakingurl': ^13.0.3 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 '@vercel/og': ^0.5.4 autoprefixer: ^10.4.12 aws-sdk: ^2.1197.0 @@ -1085,7 +1085,7 @@ importers: tailwindcss: ^3.3.0 tailwindcss-radix: ^2.8.0 typescript: 5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 webpack: ^5.73.0 yup: ^0.32.11 zod: ^3.21.4 @@ -1187,7 +1187,7 @@ importers: tailwind-fluid-typography: 1.3.0_tailwindcss@3.3.0 tailwind-merge: 1.12.0 tailwindcss-radix: 2.8.0 - uuid: 8.3.2 + uuid: 9.0.0 yup: 0.32.11 zod: 3.21.4 devDependencies: @@ -1217,7 +1217,7 @@ importers: '@types/remove-markdown': 0.3.1 '@types/shortid': 0.0.29 '@types/speakingurl': 13.0.3 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 autoprefixer: 10.4.12_postcss@8.4.23 dotenv-flow: 3.2.0 eslint: 8.26.0 @@ -1229,7 +1229,7 @@ importers: prettier: 2.7.1 prettier-plugin-tailwindcss: 0.2.5_prettier@2.7.1 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -1302,7 +1302,7 @@ importers: '@types/react': ^18.2.6 '@types/react-dom': ^18.2.4 '@types/shortid': ^0.0.29 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 '@xstate/react': '=1.5.1' autoprefixer: ^10.4.2 aws-sdk: ^2.1197.0 @@ -1358,7 +1358,7 @@ importers: tailwindcss: ^3.3.0 tailwindcss-radix: ^2.8.0 typescript: 5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 webpack: ^5.73.0 whatwg-fetch: ^3.6.2 xstate: '=4.23.1' @@ -1459,7 +1459,7 @@ importers: styled-components: 5.3.6_biqbaboplfbrettd7655fr4n2y superjson: 1.11.0 tailwindcss-radix: 2.8.0 - uuid: 8.3.2 + uuid: 9.0.0 whatwg-fetch: 3.6.2 xstate: 4.23.1 yup: 0.32.11 @@ -1484,7 +1484,7 @@ importers: '@types/react': 18.2.6 '@types/react-dom': 18.2.4 '@types/shortid': 0.0.29 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 autoprefixer: 10.4.12_postcss@8.4.23 eslint: 8.26.0 eslint-config-custom: link:../../packages/eslint-config-custom @@ -1492,7 +1492,7 @@ importers: postcss: 8.4.23 prettier-plugin-tailwindcss: 0.2.5 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -1731,7 +1731,7 @@ importers: prettier: 2.8.8 prettier-plugin-tailwindcss: 0.2.5_prettier@2.8.8 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -1804,7 +1804,7 @@ importers: '@types/react-syntax-highlighter': ^15.5.4 '@types/shortid': ^0.0.29 '@types/speakingurl': ^13.0.3 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 '@vercel/og': ^0.5.4 aws-sdk: ^2.1197.0 axios: ^0.27.2 @@ -1898,7 +1898,7 @@ importers: ts-node: ^10.9.1 twitter-lite: ^1.1.0 typescript: 5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 webpack: ^5.73.0 yarn-upgrade-all: ^0.7.1 yup: ^0.32.11 @@ -1950,7 +1950,7 @@ importers: '@trpc/react-query': 10.7.0_x4ie6nhblo2vtx2aafrgzlfqy4 '@trpc/server': 10.7.0 '@types/shortid': 0.0.29 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 '@vercel/og': 0.5.4 aws-sdk: 2.1300.0 axios: 0.27.2 @@ -2028,7 +2028,7 @@ importers: tailwindcss-radix: 2.8.0 tree-cli: 0.6.7 twitter-lite: 1.1.0 - uuid: 8.3.2 + uuid: 9.0.0 yup: 0.32.11 zod: 3.21.4 devDependencies: @@ -2066,7 +2066,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 18.2.0_react@18.2.0 - tailwindcss: 3.3.0_3fojqsmttcn75cbnzsztj3o6qa + tailwindcss: 3.3.0_ts-node@10.9.1 ts-node: 10.9.1_m5zxhvpm775j2y7tyimpt7bfse typescript: 5.1.1-rc webpack: 5.73.0 @@ -2286,7 +2286,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -2475,7 +2475,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -2533,7 +2533,7 @@ importers: '@types/nprogress': ^0.2.0 '@types/react': ^18.2.6 '@types/react-dom': ^18.2.4 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 '@vercel/og': ^0.5.4 classnames: ^2.3.1 date-fns: ^2.28.0 @@ -2572,7 +2572,7 @@ importers: tailwindcss: ^3.3.0 tailwindcss-radix: ^2.8.0 typescript: 5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 webpack: ^5.73.0 zod: ^3.21.4 dependencies: @@ -2639,7 +2639,7 @@ importers: styled-jsx: 5.1.1_react@18.2.0 superjson: 1.11.0 tailwindcss-radix: 2.8.0 - uuid: 8.3.2 + uuid: 9.0.0 zod: 3.21.4 devDependencies: '@next/env': 12.3.1 @@ -2660,7 +2660,7 @@ importers: '@types/nprogress': 0.2.0 '@types/react': 18.2.6 '@types/react-dom': 18.2.4 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 dotenv-flow: 3.2.0 eslint: 8.26.0 eslint-config-custom: link:../../packages/eslint-config-custom @@ -2668,7 +2668,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -2971,7 +2971,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -3060,7 +3060,7 @@ importers: '@types/react-scroll': ^1.8.3 '@types/remove-markdown': ^0.3.0 '@types/shortid': ^0.0.29 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 '@types/ws': ^8.5.3 '@vercel/og': ^0.5.4 '@xstate/react': '=1.5.1' @@ -3139,7 +3139,7 @@ importers: tailwindcss: ^3.3.0 tailwindcss-radix: ^2.8.0 typescript: ^5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 webpack: ^5.73.0 whatwg-fetch: ^3.6.2 ws: ^8.8.1 @@ -3276,7 +3276,7 @@ importers: superjson: 1.11.0 tailwind-merge: 1.12.0 tailwindcss-radix: 2.8.0 - uuid: 8.3.2 + uuid: 9.0.0 whatwg-fetch: 3.6.2 ws: 8.13.0 xstate: 4.23.1 @@ -3305,7 +3305,7 @@ importers: '@types/react-scroll': 1.8.3 '@types/remove-markdown': 0.3.1 '@types/shortid': 0.0.29 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 '@types/ws': 8.5.4 autoprefixer: 10.4.12_postcss@8.4.23 eslint: 8.26.0 @@ -3316,7 +3316,7 @@ importers: prettier: 2.7.1 prettier-plugin-tailwindcss: 0.2.5_prettier@2.7.1 tailwind-scrollbar: 3.0.0_tailwindcss@3.3.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -3431,7 +3431,7 @@ importers: jest-mock-extended: 3.0.4_lourqem7oeylemhnc3pwen4rq4 postcss: 8.4.23 prettier: 2.7.1 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -3698,7 +3698,7 @@ importers: postcss-preset-env: 7.7.2_postcss@8.4.23 prettier: 2.7.1 react-test-renderer: 17.0.2_react@18.2.0 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 typescript: 5.1.1-rc webpack: 5.73.0 @@ -4011,7 +4011,7 @@ importers: '@prisma/client': ^4.5.0 '@skillrecordings/tsconfig': workspace:* '@types/node': ^18.16.13 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 eslint: ^8.12.0 eslint-config-custom: workspace:* i: ^0.3.7 @@ -4028,7 +4028,7 @@ importers: devDependencies: '@skillrecordings/tsconfig': link:../tsconfig '@types/node': 18.16.13 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 eslint: 8.26.0 eslint-config-custom: link:../eslint-config-custom i: 0.3.7 @@ -4546,7 +4546,7 @@ importers: '@types/react': ^18.2.6 '@types/react-dom': ^18.2.4 '@types/sanitize-html': ^2.6.2 - '@types/uuid': ^8.3.4 + '@types/uuid': ^9.0.2 autoprefixer: ^10.4.2 babel-plugin-jsx-pragmatic: ^1.0.2 babel-preset-preact: ^2.0.0 @@ -4580,7 +4580,7 @@ importers: sanitize-html: ^2.7.0 styled-jsx: 5.1.1 typescript: 5.1.1-rc - uuid: ^8.3.2 + uuid: ^9.0.0 whatwg-fetch: ^3.6.2 dependencies: '@babel/runtime': 7.21.5 @@ -4605,7 +4605,7 @@ importers: preact-render-to-string: 5.2.0_preact@10.7.2 sanitize-html: 2.7.0 styled-jsx: 5.1.1_react@18.2.0 - uuid: 8.3.2 + uuid: 9.0.0 devDependencies: '@babel/cli': 7.17.10 '@babel/plugin-proposal-optional-catch-binding': 7.16.7 @@ -4630,7 +4630,7 @@ importers: '@types/react': 18.2.6 '@types/react-dom': 18.2.4 '@types/sanitize-html': 2.6.2 - '@types/uuid': 8.3.4 + '@types/uuid': 9.0.2 autoprefixer: 10.4.12_postcss@8.4.23 babel-plugin-jsx-pragmatic: 1.0.2 babel-preset-preact: 2.0.0 @@ -14299,7 +14299,7 @@ packages: tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1' dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.3.0_3fojqsmttcn75cbnzsztj3o6qa + tailwindcss: 3.3.0_ts-node@10.9.1 dev: false /@tailwindcss/typography/0.5.9_tailwindcss@3.3.0: @@ -15674,6 +15674,10 @@ packages: /@types/uuid/8.3.4: resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} + dev: false + + /@types/uuid/9.0.2: + resolution: {integrity: sha512-kNnC1GFBLuhImSnV7w4njQkUiJi0ZXUycu1rUaouPqiKlXkh77JKgdRnTAp1x5eBwcIwbtI+3otwzuIDEuDoxQ==} /@types/validate-npm-package-name/3.0.0: resolution: {integrity: sha512-iFNNIrEaJH1lbPiyX+O/QyxSbKxrTjdNBVZGckt+iEL9So0hdZNBL68sOfHnt2txuUD8UJXvmKv/1DkgkebgUg==} @@ -29304,7 +29308,7 @@ packages: semver: 7.5.1 sift-string: 0.0.2 stringify-object: 4.0.1 - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 tmp-cache: 1.1.0 vscode-languageserver-textdocument: 1.0.7 transitivePeerDependencies: @@ -31305,14 +31309,15 @@ packages: postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.2 + dev: false - /postcss-import/14.1.0_postcss@8.4.23: + /postcss-import/14.1.0_postcss@8.4.24: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.23 + postcss: 8.4.24 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.2 @@ -31325,22 +31330,24 @@ packages: postcss: 8.4.23 dev: true - /postcss-js/4.0.0: + /postcss-js/4.0.0_postcss@8.4.23: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 + postcss: 8.4.23 + dev: false - /postcss-js/4.0.0_postcss@8.4.23: + /postcss-js/4.0.0_postcss@8.4.24: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.23 + postcss: 8.4.24 /postcss-lab-function/4.2.0_postcss@8.4.23: resolution: {integrity: sha512-Zb1EO9DGYfa3CP8LhINHCcTTCTLI+R3t7AX2mKsDzdgVQ/GkCpHOTgOr6HBHslP7XDdVbqgHW5vvRPMdVANQ8w==} @@ -31367,8 +31374,9 @@ packages: dependencies: lilconfig: 2.1.0 yaml: 1.10.2 + dev: true - /postcss-load-config/3.1.4_3fojqsmttcn75cbnzsztj3o6qa: + /postcss-load-config/3.1.4_nbsflw7wuoau4kvqfjfb4lghv4: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -31381,7 +31389,7 @@ packages: optional: true dependencies: lilconfig: 2.1.0 - postcss: 8.4.23 + postcss: 8.4.24 ts-node: 10.9.1_m5zxhvpm775j2y7tyimpt7bfse yaml: 1.10.2 @@ -31400,6 +31408,23 @@ packages: lilconfig: 2.1.0 postcss: 8.4.23 yaml: 1.10.2 + dev: true + + /postcss-load-config/3.1.4_postcss@8.4.24: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 2.1.0 + postcss: 8.4.24 + yaml: 1.10.2 /postcss-logical/5.0.4_postcss@8.4.23: resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} @@ -31497,21 +31522,23 @@ packages: postcss-selector-parser: 6.0.11 dev: true - /postcss-nested/6.0.0: + /postcss-nested/6.0.0_postcss@8.4.23: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: + postcss: 8.4.23 postcss-selector-parser: 6.0.11 + dev: false - /postcss-nested/6.0.0_postcss@8.4.23: + /postcss-nested/6.0.0_postcss@8.4.24: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.23 + postcss: 8.4.24 postcss-selector-parser: 6.0.11 /postcss-nesting/10.1.10_postcss@8.4.23: @@ -31829,6 +31856,14 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 + /postcss/8.4.24: + resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + /postmark/2.9.5: resolution: {integrity: sha512-F27gc6wrxdn7GADodGpECoWez7FK2Pdach7A9ni5vVZiYz1YUY7T68nvVCzxrbWCjOS7ZujyclYlq1C0a4ar1w==} dependencies: @@ -36085,7 +36120,7 @@ packages: peerDependencies: tailwindcss: '>=1.2.0' dependencies: - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 dev: false /tailwind-merge/1.12.0: @@ -36098,7 +36133,7 @@ packages: peerDependencies: tailwindcss: 3.x dependencies: - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 dev: true /tailwindcss-animate/1.0.6_tailwindcss@3.3.0: @@ -36106,7 +36141,7 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: - tailwindcss: 3.3.0_postcss@8.4.23 + tailwindcss: 3.3.0 dev: false /tailwindcss-radix/2.8.0: @@ -36117,42 +36152,6 @@ packages: resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==} engines: {node: '>=12.13.0'} hasBin: true - peerDependencies: - postcss: ^8.0.9 - dependencies: - arg: 5.0.2 - chokidar: 3.5.3 - color-name: 1.1.4 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.2.12 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.18.2 - lilconfig: 2.1.0 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.23 - postcss-import: 14.1.0 - postcss-js: 4.0.0 - postcss-load-config: 3.1.4 - postcss-nested: 6.0.0 - postcss-selector-parser: 6.0.11 - postcss-value-parser: 4.2.0 - quick-lru: 5.1.1 - resolve: 1.22.2 - sucrase: 3.31.0 - transitivePeerDependencies: - - ts-node - - /tailwindcss/3.3.0_3fojqsmttcn75cbnzsztj3o6qa: - resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==} - engines: {node: '>=12.13.0'} - hasBin: true - peerDependencies: - postcss: ^8.0.9 dependencies: arg: 5.0.2 chokidar: 3.5.3 @@ -36168,11 +36167,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.23 - postcss-import: 14.1.0_postcss@8.4.23 - postcss-js: 4.0.0_postcss@8.4.23 - postcss-load-config: 3.1.4_3fojqsmttcn75cbnzsztj3o6qa - postcss-nested: 6.0.0_postcss@8.4.23 + postcss: 8.4.24 + postcss-import: 14.1.0_postcss@8.4.24 + postcss-js: 4.0.0_postcss@8.4.24 + postcss-load-config: 3.1.4_postcss@8.4.24 + postcss-nested: 6.0.0_postcss@8.4.24 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -36181,12 +36180,10 @@ packages: transitivePeerDependencies: - ts-node - /tailwindcss/3.3.0_postcss@8.4.23: + /tailwindcss/3.3.0_ts-node@10.9.1: resolution: {integrity: sha512-hOXlFx+YcklJ8kXiCAfk/FMyr4Pm9ck477G0m/us2344Vuj355IpoEDB5UmGAsSpTBmr+4ZhjzW04JuFXkb/fw==} engines: {node: '>=12.13.0'} hasBin: true - peerDependencies: - postcss: ^8.0.9 dependencies: arg: 5.0.2 chokidar: 3.5.3 @@ -36202,11 +36199,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.23 - postcss-import: 14.1.0_postcss@8.4.23 - postcss-js: 4.0.0_postcss@8.4.23 - postcss-load-config: 3.1.4_postcss@8.4.23 - postcss-nested: 6.0.0_postcss@8.4.23 + postcss: 8.4.24 + postcss-import: 14.1.0_postcss@8.4.24 + postcss-js: 4.0.0_postcss@8.4.24 + postcss-load-config: 3.1.4_nbsflw7wuoau4kvqfjfb4lghv4 + postcss-nested: 6.0.0_postcss@8.4.24 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -37741,7 +37738,6 @@ packages: /uuid/9.0.0: resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} hasBin: true - dev: false /uvu/0.5.2: resolution: {integrity: sha512-m2hLe7I2eROhh+tm3WE5cTo/Cv3WQA7Oc9f7JB6uWv+/zVKvfAm53bMyOoGOSZeQ7Ov2Fu9pLhFr7p07bnT20w==} @@ -37914,7 +37910,7 @@ packages: dependencies: '@types/node': 18.16.13 esbuild: 0.16.17 - postcss: 8.4.23 + postcss: 8.4.24 resolve: 1.22.2 rollup: 3.11.0 optionalDependencies: From ff2e68ef64f77dd3b0ac8dd743bdb5675c6aa8b5 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 21 Jun 2023 16:32:31 -0500 Subject: [PATCH 3/3] Allow commerce-server jest to use default env --- packages/commerce-server/package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/commerce-server/package.json b/packages/commerce-server/package.json index 435ac15232..fb2d8a53f0 100644 --- a/packages/commerce-server/package.json +++ b/packages/commerce-server/package.json @@ -15,8 +15,7 @@ "test": "jest" }, "jest": { - "preset": "@skillrecordings/scripts/jest/node", - "testEnvironment": "node" + "preset": "@skillrecordings/scripts/jest/node" }, "dependencies": { "@casl/ability": "^6.0.0",