diff --git a/package.json b/package.json index b13feb33158..886b2da5571 100644 --- a/package.json +++ b/package.json @@ -57,6 +57,28 @@ "dev" ], "pinVersion": "1.50.1" + }, + { + "label": "Rollup should be minimum of >= 4.39.0, because of rollup facade fix", + "dependencies": [ + "rollup" + ], + "pinVersion": ">= 4.39.0" + }, + { + "label": "eslint should support both v8 and v9", + "dependencies": [ + "eslint" + ], + "pinVersion": "^8.57.0 || ^9.0.0" + }, + { + "label": "Require minimums", + "dependencyTypes": [ + "prod", + "peer" + ], + "range": "^" } ], "semverGroups": [ @@ -133,7 +155,7 @@ "csstype": "3.1.3", "dotenv": "16.5.0", "esbuild": "0.25.8", - "eslint": "9.32.0", + "eslint": "^8.57.0 || ^9.0.0", "eslint-plugin-no-only-tests": "3.3.0", "eslint-plugin-qwik": "workspace:^", "execa": "8.0.1", @@ -155,7 +177,7 @@ "snoop": "1.0.4", "source-map": "0.7.4", "svgo": "3.3.2", - "syncpack": "12.3.3", + "syncpack": "14.0.0-alpha.19", "terser": "5.43.1", "tmp": "0.2.3", "tree-kill": "1.2.2", @@ -215,7 +237,7 @@ "cli": "pnpm build.cli && node packages/create-qwik/create-qwik.cjs && tsx --require ./scripts/runBefore.ts scripts/validate-cli.ts --copy-local-qwik-dist", "cli.qwik": "pnpm build.cli && node packages/qwik/qwik-cli.cjs", "cli.validate": "tsx --require ./scripts/runBefore.ts scripts/validate-cli.ts", - "deps": "corepack pnpm upgrade -i -r --latest && syncpack fix-mismatches && corepack pnpm dedupe", + "deps": "corepack pnpm upgrade -i -r --latest && syncpack fix && corepack pnpm dedupe", "docs.dev": "pnpm -C packages/docs build.repl-sw && pnpm -C packages/docs dev", "docs.preview": "pnpm -C packages/docs preview", "docs.sync": "tsx --require ./scripts/runBefore.ts scripts/docs_sync/index.ts && pnpm fmt", @@ -230,13 +252,13 @@ "lint.fix": "eslint --fix \"**/*.ts*\" && pnpm -r --parallel lint.fix && pnpm prettier.fix", "lint.prettier": "prettier --cache --check .", "lint.rust": "make lint", - "lint.syncpack": "syncpack list-mismatches", + "lint.syncpack": "syncpack lint", "preinstall": "npx only-allow pnpm", "prepare": "simple-git-hooks", "prettier.fix": "prettier --cache --write .", "qwik-push-build-repos": "tsx --require ./scripts/runBefore.ts ./scripts/qwik-push-build-repos.ts", "release": "changeset publish", - "release.fixup-package-json": "syncpack fix-mismatches --config syncpack-release-conf.json", + "release.fixup-package-json": "syncpack fix --source package.json", "release.pkg-pr-new": "pnpm dlx pkg-pr-new@^0.0.9 publish --compact --pnpm ./packages/qwik ./packages/qwik-city ./packages/eslint-plugin-qwik ./packages/create-qwik", "release.prepare": "pnpm build --prepare-release", "serve": "tsx --require ./scripts/runBefore.ts --inspect --conditions=development starters/dev-server.ts 3300", diff --git a/packages/insights/package.json b/packages/insights/package.json index 652d9420acc..c0d3bd57116 100644 --- a/packages/insights/package.json +++ b/packages/insights/package.json @@ -23,7 +23,7 @@ "@types/density-clustering": "1.3.3", "@types/node": "20.19.0", "autoprefixer": "10.4.21", - "eslint": "9.32.0", + "eslint": "^8.57.0 || ^9.0.0", "eslint-plugin-qwik": "workspace:^", "globals": "16.3.0", "netlify-cli": "21.5.0", diff --git a/packages/qwik-city/src/runtime/src/server-functions.ts b/packages/qwik-city/src/runtime/src/server-functions.ts index 193362a61ab..058586c5e04 100644 --- a/packages/qwik-city/src/runtime/src/server-functions.ts +++ b/packages/qwik-city/src/runtime/src/server-functions.ts @@ -237,7 +237,7 @@ const flattenValibotIssues = (issues: v.GenericIssue[]) => { const keySuffix = issue.expected === 'Array' ? '[]' : ''; const key = issue.path - .map((item) => (item.type === 'array' ? '*' : item.key)) + .map((item) => (item.type === 'array' ? '*' : item.origin)) .join('.') .replace(/\.\*/g, '[]') + keySuffix; acc[key] = acc[key] || []; @@ -246,7 +246,7 @@ const flattenValibotIssues = (issues: v.GenericIssue[]) => { } return acc; } else { - acc[issue.path.map((item) => item.key).join('.')] = issue.message; + acc[issue.path.map((item) => item.origin).join('.')] = issue.message; } } return acc; diff --git a/packages/qwik-labs/package.json b/packages/qwik-labs/package.json index 7158f6fd582..03512e09837 100644 --- a/packages/qwik-labs/package.json +++ b/packages/qwik-labs/package.json @@ -6,7 +6,7 @@ "@builder.io/qwik": "workspace:^", "@eslint/js": "9.32.0", "@types/node": "20.19.0", - "eslint": "9.32.0", + "eslint": "^8.57.0 || ^9.0.0", "eslint-plugin-qwik": "workspace:^", "globals": "16.3.0", "np": "10.2.0", diff --git a/packages/supabase-auth-helpers-qwik/package.json b/packages/supabase-auth-helpers-qwik/package.json index 232c073df08..4730f4f283e 100644 --- a/packages/supabase-auth-helpers-qwik/package.json +++ b/packages/supabase-auth-helpers-qwik/package.json @@ -29,7 +29,7 @@ "license": "MIT", "main": "./lib/index.qwik.mjs", "peerDependencies": { - "@supabase/supabase-js": "^2.49.4" + "@supabase/supabase-js": "2.49.4" }, "publishConfig": { "access": "public" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e9982059097..5fa66a5b29b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -127,7 +127,7 @@ importers: specifier: 0.25.8 version: 0.25.8 eslint: - specifier: 9.32.0 + specifier: ^8.57.0 || ^9.0.0 version: 9.32.0(jiti@2.5.1) eslint-plugin-no-only-tests: specifier: 3.3.0 @@ -193,8 +193,8 @@ importers: specifier: 3.3.2 version: 3.3.2 syncpack: - specifier: 12.3.3 - version: 12.3.3(typescript@5.4.5) + specifier: 14.0.0-alpha.19 + version: 14.0.0-alpha.19 terser: specifier: 5.43.1 version: 5.43.1 @@ -506,7 +506,7 @@ importers: specifier: 10.4.21 version: 10.4.21(postcss@8.5.6) eslint: - specifier: 9.32.0 + specifier: ^8.57.0 || ^9.0.0 version: 9.32.0(jiti@2.5.1) eslint-plugin-qwik: specifier: workspace:^ @@ -724,7 +724,7 @@ importers: specifier: 20.19.0 version: 20.19.0 eslint: - specifier: 9.32.0 + specifier: ^8.57.0 || ^9.0.0 version: 9.32.0(jiti@2.5.1) eslint-plugin-qwik: specifier: workspace:^ @@ -1083,13 +1083,6 @@ packages: '@drizzle-team/brocli@0.10.2': resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==} - '@effect/schema@0.66.5': - resolution: {integrity: sha512-xfu5161JyrfAS1Ruwv0RXd4QFiCALbm3iu9nlW9N9K+52wbS0WdO6XUekPZ9V/O7LN+XmlIh5Y9xhJaIWCZ/gw==} - deprecated: this package has been merged into the main effect package - peerDependencies: - effect: ^3.0.3 - fast-check: ^3.13.2 - '@emnapi/runtime@1.4.5': resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} @@ -4288,10 +4281,6 @@ packages: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} - chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - chalk@5.4.1: resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} @@ -4374,10 +4363,6 @@ packages: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} - cli-cursor@4.0.0: - resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - cli-cursor@5.0.0: resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} engines: {node: '>=18'} @@ -4482,10 +4467,6 @@ packages: resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} engines: {node: '>=14'} - commander@12.0.0: - resolution: {integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==} - engines: {node: '>=18'} - commander@12.1.0: resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} engines: {node: '>=18'} @@ -5028,9 +5009,6 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - effect@3.0.3: - resolution: {integrity: sha512-mgG+FoWrM4sny8OxDFWCpq+6LwGf9cK/JztVhxZQeZM9ZMXY+lKbdMEQmemNYce0QVAz2+YqUKwhKzOidwbZzg==} - electron-to-chromium@1.5.162: resolution: {integrity: sha512-hQA+Zb5QQwoSaXJWEAGEw1zhk//O7qDzib05Z4qTqZfNju/FAkrm5ZInp0JbTp4Z18A6bilopdZWEYrFSsfllA==} @@ -5502,10 +5480,6 @@ packages: engines: {node: '>= 10.17.0'} hasBin: true - fast-check@3.17.2: - resolution: {integrity: sha512-+3DPTxtxABLgmmVpYxrash3DHoq0cMa1jjLYNp3qqokKKhqVEaS4lbnaDKqWU5Dd6C2pEudPPBAEEQ9nUou9OQ==} - engines: {node: '>=8.0.0'} - fast-content-type-parse@1.1.0: resolution: {integrity: sha512-fBHHqSTFLVnR61C+gltJuE5GkVQMV0S2nqUO8TJ+5Z3qAKG8vAx4FKai1s5jq/inV1+sREynIWSuQ6HgoSXpDQ==} @@ -5927,10 +5901,6 @@ packages: resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - globby@14.0.1: - resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} - engines: {node: '>=18'} - globby@14.1.0: resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} engines: {node: '>=18'} @@ -6748,6 +6718,7 @@ packages: libsql@0.5.17: resolution: {integrity: sha512-RRlj5XQI9+Wq+/5UY8EnugSWfRmHEw4hn3DKlPrkUgZONsge1PwTtHcpStP6MSNi8ohcbsRgEHJaymA33a8cBw==} + cpu: [x64, arm64, wasm32, arm] os: [darwin, linux, win32] light-my-request@5.14.0: @@ -6935,10 +6906,6 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} - log-symbols@6.0.0: - resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} - engines: {node: '>=18'} - log-symbols@7.0.1: resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==} engines: {node: '>=18'} @@ -7311,10 +7278,6 @@ packages: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} - minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} - engines: {node: '>=16 || 14 >=14.17'} - minimatch@9.0.5: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} @@ -7542,10 +7505,6 @@ packages: resolution: {integrity: sha512-DIuCGcKYYhASAZW6Xh/tiaGMko8IHOHe0n3zOA7SzTi0Yvy00x8L7sa5yNiZ75Ny58O/KeRtNouy8Ut6gPbKiw==} engines: {node: '>=18'} - npm-package-arg@11.0.2: - resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==} - engines: {node: ^16.14.0 || >=18.0.0} - npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} @@ -7656,10 +7615,6 @@ packages: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} - ora@8.0.1: - resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} - engines: {node: '>=18'} - org-regex@1.0.0: resolution: {integrity: sha512-7bqkxkEJwzJQUAlyYniqEZ3Ilzjh0yoa62c7gL6Ijxj5bEpPL+8IE1Z0PFj0ywjjXQcdrwR51g9MIcLezR0hKQ==} engines: {node: '>=8'} @@ -8123,10 +8078,6 @@ packages: resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} engines: {node: '>=6'} - proc-log@4.2.0: - resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} @@ -8202,9 +8153,6 @@ packages: deprecated: < 24.9.0 is no longer supported hasBin: true - pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - qs@6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} @@ -8309,10 +8257,6 @@ packages: resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} engines: {node: '>=6'} - read-yaml-file@2.1.0: - resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} - engines: {node: '>=10.13'} - readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -8484,10 +8428,6 @@ packages: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} - restore-cursor@4.0.0: - resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - restore-cursor@5.1.0: resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} engines: {node: '>=18'} @@ -8620,11 +8560,6 @@ packages: engines: {node: '>=10'} hasBin: true - semver@7.6.0: - resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} - engines: {node: '>=10'} - hasBin: true - semver@7.7.1: resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} engines: {node: '>=10'} @@ -8872,10 +8807,6 @@ packages: std-env@3.9.0: resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} - stdin-discarder@0.2.2: - resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} - engines: {node: '>=18'} - stop-iteration-iterator@1.1.0: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} @@ -8960,10 +8891,6 @@ packages: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} - strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - strip-dirs@3.0.0: resolution: {integrity: sha512-I0sdgcFTfKQlUPZyAqPJmSG3HLO9rWDFnxonnIbskYNM3DwFOeTNB5KzVq3dA1GdRAc/25b5Y7UO2TQfKWw4aQ==} @@ -9055,9 +8982,39 @@ packages: resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} engines: {node: '>=0.10'} - syncpack@12.3.3: - resolution: {integrity: sha512-r154Rk8YtJA0My8Nu5v4e58n3y85atG4WlxekTQ/DT4toqiMtprqn5LrHuNVAhbpsOfUHPv6EFMj9k+FdDvgDA==} - engines: {node: '>=16'} + syncpack-darwin-arm64@14.0.0-alpha.19: + resolution: {integrity: sha512-Xw4Q86Cf/55hE4xYxYZCEr98CqPpCF1IXPvr8EI+grAb44cE3BeQsi7SnmQNMGQ9Nibu2kr7D1fxGpQWdR+odg==} + cpu: [arm64] + os: [darwin] + + syncpack-darwin-x64@14.0.0-alpha.19: + resolution: {integrity: sha512-e+10rBn13KEfWYNY7/GUTnfv7XrvmRhTMbl+4m922/O2fx2v515mbHx5ku1KvN3Gz5Up3y459bslS9+aIx0kCA==} + cpu: [x64] + os: [darwin] + + syncpack-linux-arm64@14.0.0-alpha.19: + resolution: {integrity: sha512-X8XeQ06uQ8ZyuK1hSXaHBneBUGSfe0/eA9ZCoARQr6TD6fF3CT45nDSVtV9y3qrmL3S2u4Rc0/wW6J5VbpIi/Q==} + cpu: [arm64] + os: [linux] + + syncpack-linux-x64@14.0.0-alpha.19: + resolution: {integrity: sha512-eRaJcflvzZhawn67/0QZPS6VtOu2b8sl5DlpdmumgZ7yb1r77Q0Lxf5xHV3juYxnnL8xsZ8svXTvZMSpypsQkg==} + cpu: [x64] + os: [linux] + + syncpack-windows-arm64@14.0.0-alpha.19: + resolution: {integrity: sha512-JRpr1xg4xJCdeitLjohtIN1d6njxE0/r/X2KVHUAAzUVSvl0y3OIk8j5QS9/qN8toOLwjO209zdRx03GNA+SGw==} + cpu: [arm64] + os: [win32] + + syncpack-windows-x64@14.0.0-alpha.19: + resolution: {integrity: sha512-kxCMO0VJQU8M/5CfWD1v566QISzbQmMBkuQN/zrfDxQJa/Q0jkz+VeqJuUVL9m4bmPBik9FlpatCNPmHEV5hMA==} + cpu: [x64] + os: [win32] + + syncpack@14.0.0-alpha.19: + resolution: {integrity: sha512-gFOMbycrzlGpYgnVwiKzW9p8y9cUPTDrfiofMFPt70/yVOwCBuEYZM/wfdkXVhZd7HwQQT0+MEYHiO+HqyaH2w==} + engines: {node: '>=14.17.0'} hasBin: true system-architecture@0.1.0: @@ -9136,10 +9093,6 @@ packages: through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - tightrope@0.2.0: - resolution: {integrity: sha512-Kw36UHxJEELq2VUqdaSGR2/8cAsPgMtvX8uGVU6Jk26O66PhXec0A5ZnRYs47btbtwPDpXXF66+Fo3vimCM9aQ==} - engines: {node: '>=16'} - tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} @@ -9253,9 +9206,6 @@ packages: '@swc/wasm': optional: true - ts-toolbelt@9.6.0: - resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} - tsconfck@3.1.6: resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} engines: {node: ^18 || >=20} @@ -10449,11 +10399,6 @@ snapshots: '@drizzle-team/brocli@0.10.2': {} - '@effect/schema@0.66.5(effect@3.0.3)(fast-check@3.17.2)': - dependencies: - effect: 3.0.3 - fast-check: 3.17.2 - '@emnapi/runtime@1.4.5': dependencies: tslib: 2.8.1 @@ -13764,8 +13709,6 @@ snapshots: ansi-styles: 4.3.0 supports-color: 7.2.0 - chalk@5.3.0: {} - chalk@5.4.1: {} character-entities-html4@2.1.0: {} @@ -13841,10 +13784,6 @@ snapshots: dependencies: restore-cursor: 3.1.0 - cli-cursor@4.0.0: - dependencies: - restore-cursor: 4.0.0 - cli-cursor@5.0.0: dependencies: restore-cursor: 5.1.0 @@ -13947,8 +13886,6 @@ snapshots: commander@10.0.1: {} - commander@12.0.0: {} - commander@12.1.0: {} commander@2.20.3: {} @@ -14382,8 +14319,6 @@ snapshots: ee-first@1.1.1: {} - effect@3.0.3: {} - electron-to-chromium@1.5.162: {} elegant-spinner@1.0.1: {} @@ -15077,10 +15012,6 @@ snapshots: transitivePeerDependencies: - supports-color - fast-check@3.17.2: - dependencies: - pure-rand: 6.1.0 - fast-content-type-parse@1.1.0: {} fast-content-type-parse@2.0.1: {} @@ -15550,15 +15481,6 @@ snapshots: merge2: 1.4.1 slash: 4.0.0 - globby@14.0.1: - dependencies: - '@sindresorhus/merge-streams': 2.3.0 - fast-glob: 3.3.3 - ignore: 5.3.1 - path-type: 5.0.0 - slash: 5.1.0 - unicorn-magic: 0.1.0 - globby@14.1.0: dependencies: '@sindresorhus/merge-streams': 2.3.0 @@ -16650,11 +16572,6 @@ snapshots: chalk: 4.1.2 is-unicode-supported: 0.1.0 - log-symbols@6.0.0: - dependencies: - chalk: 5.4.1 - is-unicode-supported: 1.3.0 - log-symbols@7.0.1: dependencies: is-unicode-supported: 2.1.0 @@ -17288,10 +17205,6 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.4: - dependencies: - brace-expansion: 2.0.1 - minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 @@ -17641,13 +17554,6 @@ snapshots: registry-url: 6.0.1 validate-npm-package-name: 5.0.1 - npm-package-arg@11.0.2: - dependencies: - hosted-git-info: 7.0.2 - proc-log: 4.2.0 - semver: 7.7.2 - validate-npm-package-name: 5.0.1 - npm-run-path@4.0.1: dependencies: path-key: 3.1.1 @@ -17785,18 +17691,6 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 - ora@8.0.1: - dependencies: - chalk: 5.4.1 - cli-cursor: 4.0.0 - cli-spinners: 2.9.2 - is-interactive: 2.0.0 - is-unicode-supported: 2.1.0 - log-symbols: 6.0.0 - stdin-discarder: 0.2.2 - string-width: 7.2.0 - strip-ansi: 7.1.0 - org-regex@1.0.0: {} os-name@5.1.0: @@ -18198,8 +18092,6 @@ snapshots: prismjs@1.30.0: {} - proc-log@4.2.0: {} - process-nextick-args@2.0.1: {} process-warning@3.0.0: {} @@ -18293,8 +18185,6 @@ snapshots: - typescript - utf-8-validate - pure-rand@6.1.0: {} - qs@6.11.0: dependencies: side-channel: 1.1.0 @@ -18411,11 +18301,6 @@ snapshots: pify: 4.0.1 strip-bom: 3.0.0 - read-yaml-file@2.1.0: - dependencies: - js-yaml: 4.1.0 - strip-bom: 4.0.0 - readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 @@ -18664,11 +18549,6 @@ snapshots: onetime: 5.1.2 signal-exit: 3.0.7 - restore-cursor@4.0.0: - dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 - restore-cursor@5.1.0: dependencies: onetime: 7.0.0 @@ -18813,10 +18693,6 @@ snapshots: dependencies: lru-cache: 6.0.0 - semver@7.6.0: - dependencies: - lru-cache: 6.0.0 - semver@7.7.1: {} semver@7.7.2: {} @@ -19135,8 +19011,6 @@ snapshots: std-env@3.9.0: {} - stdin-discarder@0.2.2: {} - stop-iteration-iterator@1.1.0: dependencies: es-errors: 1.3.0 @@ -19242,8 +19116,6 @@ snapshots: strip-bom@3.0.0: {} - strip-bom@4.0.0: {} - strip-dirs@3.0.0: dependencies: inspect-with-kind: 1.0.5 @@ -19326,27 +19198,34 @@ snapshots: symbol-observable@4.0.0: {} - syncpack@12.3.3(typescript@5.4.5): + syncpack-darwin-arm64@14.0.0-alpha.19: + optional: true + + syncpack-darwin-x64@14.0.0-alpha.19: + optional: true + + syncpack-linux-arm64@14.0.0-alpha.19: + optional: true + + syncpack-linux-x64@14.0.0-alpha.19: + optional: true + + syncpack-windows-arm64@14.0.0-alpha.19: + optional: true + + syncpack-windows-x64@14.0.0-alpha.19: + optional: true + + syncpack@14.0.0-alpha.19: dependencies: - '@effect/schema': 0.66.5(effect@3.0.3)(fast-check@3.17.2) - chalk: 5.3.0 - chalk-template: 1.1.0 - commander: 12.0.0 - cosmiconfig: 9.0.0(typescript@5.4.5) - effect: 3.0.3 - enquirer: 2.4.1 - fast-check: 3.17.2 - globby: 14.0.1 - minimatch: 9.0.4 - npm-package-arg: 11.0.2 - ora: 8.0.1 - prompts: 2.4.2 - read-yaml-file: 2.1.0 - semver: 7.6.0 - tightrope: 0.2.0 - ts-toolbelt: 9.6.0 - transitivePeerDependencies: - - typescript + tsx: 4.20.3 + optionalDependencies: + syncpack-darwin-arm64: 14.0.0-alpha.19 + syncpack-darwin-x64: 14.0.0-alpha.19 + syncpack-linux-arm64: 14.0.0-alpha.19 + syncpack-linux-x64: 14.0.0-alpha.19 + syncpack-windows-arm64: 14.0.0-alpha.19 + syncpack-windows-x64: 14.0.0-alpha.19 system-architecture@0.1.0: {} @@ -19449,8 +19328,6 @@ snapshots: through@2.3.8: {} - tightrope@0.2.0: {} - tinybench@2.9.0: {} tinyexec@0.3.2: {} @@ -19542,8 +19419,6 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-toolbelt@9.6.0: {} - tsconfck@3.1.6(typescript@5.4.5): optionalDependencies: typescript: 5.4.5 diff --git a/syncpack-release-conf.json b/syncpack-release-conf.json deleted file mode 100644 index 077730aed7a..00000000000 --- a/syncpack-release-conf.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "versionGroups": [ - { - "label": "Require minimums", - "dependencyTypes": ["prod", "peer"], - "range": "^" - } - ], - "semverGroups": [ - { - "label": "Playwright should have the same version as in flake.nix", - "dependencies": ["@playwright/test"], - "pinVersion": "1.47.0" - }, - { - "label": "Undici should always be * until we remove it", - "dependencies": ["undici"], - "range": "*" - }, - { - "label": "use exact version numbers for devDependencies", - "dependencyTypes": ["dev"], - "range": "" - } - ] -}