Skip to content
Closed
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
32 changes: 27 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this syntax doesn't work, for vite we had to do >=5 <8 instead of 5||6||7

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok,I didn't have the bandwidth to test those, closing this and creating a new PR with minimal changes

},
{
"label": "Require minimums",
"dependencyTypes": [
"prod",
"peer"
],
"range": "^"
}
],
"semverGroups": [
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/insights/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/qwik-city/src/runtime/src/server-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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] || [];
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik-labs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase-auth-helpers-qwik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading
Loading