react-resizable-panels 4.6.2 → 4.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +29 -29
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- <img src="https://react-resizable-panels.vercel.app/og.svg" alt="react-resizable-panels logo" width="400" height="210" />
1
+ <img src="https://react-resizable-panels.vercel.app/og.png" alt="react-resizable-panels logo" width="400" height="210" />
2
2
 
3
3
  `react-resizable-panels`: React components for resizable panel groups/layouts.
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-resizable-panels",
3
- "version": "4.6.2",
3
+ "version": "4.6.3",
4
4
  "type": "module",
5
5
  "author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
6
6
  "contributors": [
@@ -18,6 +18,33 @@
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
+ "scripts": {
22
+ "dev": "vite",
23
+ "dev:integrations": "concurrently -k \"pnpm run dev:integrations:next\" \"pnpm run dev:integrations:vike\" \"pnpm run dev:integrations:vite\"",
24
+ "dev:integrations:next": "pnpm -C integrations/next/ run dev",
25
+ "dev:integrations:vike": "pnpm -C integrations/vike/ run dev",
26
+ "dev:integrations:vite": "pnpm -C integrations/vite/ run dev",
27
+ "build": "pnpm run build:lib && pnpm run build:docs",
28
+ "build:docs": "cross-env TARGET=docs vite build",
29
+ "build:lib": "cross-env TARGET=lib vite build",
30
+ "compile": "pnpm run compile:docs && pnpm run compile:examples",
31
+ "compile:docs": "tsx ./scripts/compile-docs",
32
+ "compile:examples": "tsx ./scripts/compile-examples",
33
+ "compress:og-image": "tsx ./scripts/compress-og-image",
34
+ "e2e:install": "pnpm -C integrations/tests exec playwright install --with-deps",
35
+ "e2e:test": "pnpm -C integrations/tests run test",
36
+ "e2e:test:main": "pnpm -C integrations/tests run test --project=chromium",
37
+ "e2e:test:popup": "pnpm -C integrations/tests run test --project=chromium:popup",
38
+ "lint": "eslint .",
39
+ "prerelease": "rimraf dist && pnpm run build:lib",
40
+ "prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
41
+ "prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
42
+ "preview": "vite preview",
43
+ "test": "vitest",
44
+ "test:ci": "vitest run",
45
+ "test:debug": "vitest --inspect-brk=127.0.0.1:3000 --no-file-parallelism",
46
+ "tsc": "tsc -b"
47
+ },
21
48
  "lint-staged": {
22
49
  "**/*": "prettier --write --ignore-unknown"
23
50
  },
@@ -91,32 +118,5 @@
91
118
  "vitest": "^3.2.4",
92
119
  "vitest-fail-on-console": "^0.10.1",
93
120
  "zustand": "^5.0.7"
94
- },
95
- "scripts": {
96
- "dev": "vite",
97
- "dev:integrations": "concurrently -k \"pnpm run dev:integrations:next\" \"pnpm run dev:integrations:vike\" \"pnpm run dev:integrations:vite\"",
98
- "dev:integrations:next": "pnpm -C integrations/next/ run dev",
99
- "dev:integrations:vike": "pnpm -C integrations/vike/ run dev",
100
- "dev:integrations:vite": "pnpm -C integrations/vite/ run dev",
101
- "build": "pnpm run build:lib && pnpm run build:docs",
102
- "build:docs": "cross-env TARGET=docs vite build",
103
- "build:lib": "cross-env TARGET=lib vite build",
104
- "compile": "pnpm run compile:docs && pnpm run compile:examples",
105
- "compile:docs": "tsx ./scripts/compile-docs",
106
- "compile:examples": "tsx ./scripts/compile-examples",
107
- "compress:og-image": "tsx ./scripts/compress-og-image",
108
- "e2e:install": "pnpm -C integrations/tests exec playwright install --with-deps",
109
- "e2e:test": "pnpm -C integrations/tests run test",
110
- "e2e:test:main": "pnpm -C integrations/tests run test --project=chromium",
111
- "e2e:test:popup": "pnpm -C integrations/tests run test --project=chromium:popup",
112
- "lint": "eslint .",
113
- "prerelease": "rimraf dist && pnpm run build:lib",
114
- "prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
115
- "prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
116
- "preview": "vite preview",
117
- "test": "vitest",
118
- "test:ci": "vitest run",
119
- "test:debug": "vitest --inspect-brk=127.0.0.1:3000 --no-file-parallelism",
120
- "tsc": "tsc -b"
121
121
  }
122
- }
122
+ }