Skip to content

Commit 14a6382

Browse files
committed
chore: bump deps
1 parent c63352b commit 14a6382

File tree

47 files changed

+2971
-3878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2971
-3878
lines changed

.changeset/few-seas-unite.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@pandacss/preset-open-props': patch
3+
---
4+
5+
Update open prop preset to include new gradient, border and keyframes

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@ ts-import-map-outdir
3030

3131
!packages/studio/styled-system
3232
packages/studio/src/lib/analysis.json
33+
34+
storybook-static

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,24 +47,24 @@
4747
"lint-staged": "15.2.11",
4848
"mdx-local-link-checker": "2.1.1",
4949
"rimraf": "5.0.10",
50-
"ts-morph": "26.0.0",
51-
"tsup": "8.5.0",
50+
"ts-morph": "27.0.2",
51+
"tsup": "8.5.1",
5252
"tsx": "4.20.6",
53-
"typescript": "5.8.3",
53+
"typescript": "5.9.3",
5454
"vite-tsconfig-paths": "5.1.4",
5555
"vitest": "3.2.4"
5656
},
5757
"devDependencies": {
58-
"@eslint/js": "^9.37.0",
58+
"@eslint/js": "^9.39.1",
5959
"@types/eslint": "9.6.1",
6060
"@types/node": "24.8.1",
61-
"@typescript-eslint/eslint-plugin": "8.46.1",
62-
"@typescript-eslint/parser": "8.46.1",
63-
"eslint": "9.37.0",
61+
"@typescript-eslint/eslint-plugin": "8.46.4",
62+
"@typescript-eslint/parser": "8.46.4",
63+
"eslint": "9.39.1",
6464
"eslint-config-prettier": "10.1.8",
6565
"globals": "^16.4.0",
6666
"prettier": "3.2.5",
67-
"typescript-eslint": "^8.46.1",
67+
"typescript-eslint": "^8.46.4",
6868
"vite-plugin-virtual": "^0.4.0"
6969
},
7070
"lint-staged": {

packages/astro-plugin-studio/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
"javascript-stringify": "2.1.0"
4444
},
4545
"devDependencies": {
46-
"astro": "5.5.5",
47-
"vite": "7.0.6"
46+
"astro": "5.15.6",
47+
"vite": "7.2.2"
4848
},
4949
"peerDependencies": {
5050
"astro": ">=4"

packages/cli/__tests__/cli.test.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ describe('CLI', () => {
4141
})
4242

4343
test('init', async () => {
44+
// Clean up config file before test to ensure fresh state
45+
try {
46+
await fs.unlink(paths.config)
47+
} catch {
48+
// Ignore if file doesn't exist
49+
}
50+
4451
const cmd = `node ${binPath} init --cwd="${testsCwd}"`
4552

4653
// init
@@ -80,7 +87,7 @@ describe('CLI', () => {
8087
expect(styledSystemExists).toBeUndefined()
8188

8289
// Check that the `styled-system/jsx` was NOT created
83-
expect(() => fs.access(path.resolve(paths.styledSystem, 'jsx'))).rejects.toThrow()
90+
await expect(fs.access(path.resolve(paths.styledSystem, 'jsx'))).rejects.toThrow()
8491

8592
// Check that the `.cpuprof` file was created
8693
const cpuProfPath = output.split('[cpu-prof]').pop()!.trim()!

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"postcss.js"
5858
],
5959
"dependencies": {
60-
"@clack/prompts": "0.9.1",
60+
"@clack/prompts": "0.11.0",
6161
"@pandacss/config": "workspace:*",
6262
"@pandacss/logger": "workspace:*",
6363
"@pandacss/node": "workspace:*",

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"escalade": "3.1.2",
8484
"merge-anything": "5.1.7",
8585
"microdiff": "1.5.0",
86-
"typescript": "5.8.3"
86+
"typescript": "5.9.3"
8787
},
8888
"devDependencies": {
8989
"pkg-types": "2.3.0"

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"postcss-nested": "7.0.2",
5858
"postcss-normalize-whitespace": "7.0.1",
5959
"postcss-selector-parser": "7.1.0",
60-
"ts-pattern": "5.8.0"
60+
"ts-pattern": "5.9.0"
6161
},
6262
"devDependencies": {
6363
"@types/lodash.merge": "4.6.9"

packages/extractor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
"dependencies": {
4545
"@pandacss/shared": "workspace:*",
4646
"ts-evaluator": "1.2.0",
47-
"ts-morph": "26.0.0"
47+
"ts-morph": "27.0.2"
4848
}
4949
}

packages/generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"outdent": " ^0.8.0",
4949
"pluralize": "8.0.0",
5050
"postcss": "8.5.6",
51-
"ts-pattern": "5.8.0"
51+
"ts-pattern": "5.9.0"
5252
},
5353
"devDependencies": {
5454
"@types/pluralize": "0.0.33"

0 commit comments

Comments
 (0)