Skip to content

Commit ce022ef

Browse files
committed
chore: 🔧 update dependencies and upgrade Yarn to v4.9.4
1 parent 7fd630b commit ce022ef

File tree

7 files changed

+591
-556
lines changed

7 files changed

+591
-556
lines changed

.changeset/gold-tables-wonder.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@hyperse/next-config": patch
3+
---
4+
5+
update dependencies and upgrade Yarn to v4.9.4

.yarn/releases/yarn-4.9.2.cjs renamed to .yarn/releases/yarn-4.9.4.cjs

Lines changed: 358 additions & 358 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ enableGlobalCache: false
44

55
nodeLinker: node-modules
66

7-
yarnPath: .yarn/releases/yarn-4.9.2.cjs
7+
yarnPath: .yarn/releases/yarn-4.9.4.cjs

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,22 @@
5252
},
5353
"dependencies": {
5454
"picocolors": "^1.1.1",
55-
"zod": "^4.0.17"
55+
"zod": "^4.1.5"
5656
},
5757
"devDependencies": {
5858
"@changesets/changelog-github": "^0.5.1",
59-
"@changesets/cli": "^2.29.5",
59+
"@changesets/cli": "^2.29.6",
6060
"@commitlint/cli": "^19.8.1",
6161
"@commitlint/config-conventional": "^19.8.1",
62-
"@hyperse/eslint-config-hyperse": "^1.4.6",
63-
"@types/node": "^24.2.1",
62+
"@hyperse/eslint-config-hyperse": "^1.4.8",
63+
"@types/node": "^24.3.0",
6464
"commitizen": "^4.3.1",
6565
"cz-conventional-changelog": "^3.3.0",
66-
"eslint": "^9.33.0",
66+
"eslint": "^9.34.0",
6767
"execa": "^9.6.0",
6868
"husky": "^9.1.7",
69-
"lint-staged": "^16.1.5",
70-
"next": "^15.4.6",
69+
"lint-staged": "^16.1.6",
70+
"next": "^15.5.2",
7171
"npm-run-all": "^4.1.5",
7272
"react": "^19.1.1",
7373
"react-dom": "^19.1.1",
@@ -76,9 +76,9 @@
7676
"vitest": "^3.2.4"
7777
},
7878
"peerDependencies": {
79-
"next": "^15.0.1"
79+
"next": ">=15.0.1"
8080
},
81-
"packageManager": "[email protected].2",
81+
"packageManager": "[email protected].4",
8282
"engines": {
8383
"node": ">=20"
8484
},

src/createNextConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type NextConfig } from 'next';
1+
import type { NextConfig } from 'next';
22

33
/**
44
* A function that takes an optional Next.js config and returns a modified Next.js config

src/printEnv.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import picocolors from 'picocolors';
1+
import { cyan } from 'picocolors';
22
import type { z, ZodSafeParseSuccess, ZodType } from 'zod';
33

44
/**
@@ -10,7 +10,7 @@ export const printEnv = <T extends ZodType>(
1010
section: string,
1111
zodSafeParseSuccess: ZodSafeParseSuccess<z.output<T>>
1212
) => {
13-
const prefix = picocolors.cyan('- info'.padEnd(7));
13+
const prefix = cyan('- info'.padEnd(7));
1414
console.info(prefix.concat(`${section} validation successful:`));
1515
for (const [key, value] of Object.entries(
1616
zodSafeParseSuccess.data as Record<string, unknown>

0 commit comments

Comments
 (0)