Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8227b3c

Browse files
committedJun 12, 2025
chore(soba): update storybook
1 parent 6eee3eb commit 8227b3c

File tree

6 files changed

+211
-455
lines changed

6 files changed

+211
-455
lines changed
 

‎doctor-storybook.log

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,16 @@
11
🩺 The doctor is checking the health of your Storybook..
2-
╭ Incompatible packages found ─────────────────────────────────────────────────────────────────────────────────╮
3-
│ │
4-
│ You are currently using Storybook 9.0.9 but you have packages which are incompatible with it: │
5-
│ - @chromatic-com/storybook@3.2.6 which depends on ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 │
6-
│ - @storybook/addon-interactions@8.6.14 which depends on 8.6.14 │
7-
│ Repo: https://github.com/storybookjs/storybook/tree/next/code/addons/interactions │
8-
│ - @storybook/core-server@8.6.14 which depends on ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 │
9-
│ Repo: https://github.com/storybookjs/storybook/tree/next/code/lib/core-server │
10-
│ - @storybook/manager-api@8.6.14 which depends on ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 │
11-
│ Repo: https://github.com/storybookjs/storybook/tree/next/code/lib/manager-api │
12-
│ - @storybook/test@8.6.14 which depends on 8.6.14 │
13-
│ Repo: https://github.com/storybookjs/storybook/tree/next/code/lib/test │
14-
│ - @storybook/theming@8.6.14 which depends on ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 │
15-
│ Repo: https://github.com/storybookjs/storybook/tree/next/code/lib/theming │
16-
│ - storybook-addon-deep-controls@0.9.2 which depends on 7.x.x || 8.x.x │
17-
│ Repo: https://github.com/eliasm307/storybook-addon-deep-controls#readme │
18-
│ │
19-
│ │
20-
│ Please consider updating your packages or contacting the maintainers for compatibility details. │
21-
│ For more on Storybook 9 compatibility, see the linked GitHub issue: │
22-
│ https://github.com/storybookjs/storybook/issues/30944 │
23-
│ │
24-
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
2+
╭ Incompatible packages found ────────────────────────────────────────────────────────────────────────╮
3+
│ │
4+
│ You are currently using Storybook 9.0.9 but you have packages which are incompatible with it: │
5+
│ - storybook-addon-deep-controls@0.9.3 which depends on 7.x.x || 8.x.x │
6+
│ Repo: https://github.com/eliasm307/storybook-addon-deep-controls#readme │
7+
│ │
8+
│ │
9+
│ Please consider updating your packages or contacting the maintainers for compatibility details. │
10+
│ For more on Storybook 9 compatibility, see the linked GitHub issue: │
11+
│ https://github.com/storybookjs/storybook/issues/30944 │
12+
│ │
13+
╰─────────────────────────────────────────────────────────────────────────────────────────────────────╯
2514

2615
You can always recheck the health of your project by running:
2716
npx storybook doctor

‎libs/soba/.storybook/documentation-template.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Meta, Title, Subtitle, Description, Primary, Controls } from '@storybook/blocks';
1+
import { Meta, Title, Subtitle, Description, Primary, Controls } from '@storybook/addon-docs/blocks';
22

33
{/\*
44

‎libs/soba/.storybook/manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { addons } from '@storybook/manager-api';
1+
import { addons } from 'storybook/manager-api';
22
import theme from './theme';
33

44
addons.setConfig({ theme });

‎libs/soba/.storybook/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { create } from '@storybook/theming';
1+
import { create } from 'storybook/theming';
22

33
export default create({
44
base: 'light',

‎package.json

Lines changed: 159 additions & 163 deletions
Original file line numberDiff line numberDiff line change
@@ -1,164 +1,160 @@
11
{
2-
"name": "@platform/source",
3-
"version": "0.0.0",
4-
"license": "MIT",
5-
"scripts": {
6-
"**comments**": "these scripts are here for convenience to debugging",
7-
"generate-json": "node tools/scripts/json/index.mjs",
8-
"generate-soba": "node tools/scripts/generate-soba-json.mjs",
9-
"commit": "czg",
10-
"package_old": "nx run-many -t build --projects=core,cannon,postprocessing,soba,rapier,plugin-old && nx generate-json @platform/source",
11-
"package": "nx run-many -t build --projects=core,cannon,postprocessing,soba,rapier,plugin,tweakpane,theatre && nx generate-json @platform/source --skip-nx-cache"
12-
},
13-
"private": true,
14-
"devDependencies": {
15-
"@angular-devkit/build-angular": "20.0.2",
16-
"@angular-devkit/core": "20.0.2",
17-
"@angular-devkit/schematics": "20.0.2",
18-
"@angular-eslint/eslint-plugin": "20.0.0",
19-
"@angular-eslint/eslint-plugin-template": "20.0.0",
20-
"@angular-eslint/template-parser": "20.0.0",
21-
"@angular/build": "20.0.2",
22-
"@angular/cli": "~20.0.0",
23-
"@angular/compiler-cli": "20.0.3",
24-
"@angular/language-service": "20.0.3",
25-
"@chromatic-com/storybook": "^3.2.6",
26-
"@eslint/eslintrc": "^2.1.1",
27-
"@nx/angular": "21.2.0",
28-
"@nx/cypress": "21.2.0",
29-
"@nx/devkit": "21.2.0",
30-
"@nx/eslint": "21.2.0",
31-
"@nx/eslint-plugin": "21.2.0",
32-
"@nx/jest": "21.2.0",
33-
"@nx/js": "21.2.0",
34-
"@nx/plugin": "21.2.0",
35-
"@nx/storybook": "21.2.0",
36-
"@nx/vite": "21.2.0",
37-
"@nx/web": "21.2.0",
38-
"@nx/workspace": "21.2.0",
39-
"@phenomnomnominal/tsquery": "^6.1.3",
40-
"@rosskevin/gltfjsx": "^7.1.3",
41-
"@schematics/angular": "20.0.2",
42-
"@storybook/addon-docs": "^9.0.9",
43-
"@storybook/angular": "9.0.9",
44-
"@storybook/core-server": "^8.6.14",
45-
"@storybook/manager-api": "^8.6.14",
46-
"@storybook/test": "^8.6.14",
47-
"@storybook/test-runner": "0.22.0",
48-
"@storybook/theming": "^8.6.14",
49-
"@swc-node/register": "1.10.10",
50-
"@swc/cli": "0.7.7",
51-
"@swc/core": "1.11.29",
52-
"@tweakpane/core": "^2.0.5",
53-
"@types/jest": "29.5.14",
54-
"@types/node": "20.14.12",
55-
"@types/three": "^0.176.0",
56-
"@typescript-eslint/utils": "8.32.1",
57-
"autoprefixer": "^10.4.21",
58-
"cypress": "14.3.3",
59-
"cz-git": "^1.11.1",
60-
"czg": "^1.11.1",
61-
"dotenv-cli": "^8.0.0",
62-
"enquirer": "^2.4.1",
63-
"eslint": "9.27.0",
64-
"eslint-config-prettier": "10.1.5",
65-
"eslint-plugin-cypress": "^2.13.4",
66-
"eslint-plugin-storybook": "9.0.9",
67-
"glslify-loader": "^2.0.0",
68-
"jest": "29.7.0",
69-
"jest-environment-jsdom": "29.7.0",
70-
"jest-environment-node": "^29.7.0",
71-
"jest-preset-angular": "14.6.0",
72-
"jiti": "2.4.2",
73-
"jsdom": "^24.1.1",
74-
"jsonc-eslint-parser": "^2.4.0",
75-
"ng-packagr": "20.0.0",
76-
"node-three-gltf": "^2.0.2",
77-
"nx": "21.2.0",
78-
"postcss": "^8.5.3",
79-
"postcss-import": "~16.1.0",
80-
"postcss-preset-env": "~9.6.0",
81-
"postcss-url": "~10.1.3",
82-
"postprocessing": "^6.37.3",
83-
"prettier": "^3.5.3",
84-
"prettier-plugin-organize-imports": "^4.1.0",
85-
"storybook": "9.0.9",
86-
"storybook-addon-deep-controls": "^0.9.2",
87-
"tailwindcss": "^3.4.17",
88-
"three": "^0.176.0",
89-
"ts-jest": "^29.3.4",
90-
"ts-morph": "^26.0.0",
91-
"ts-node": "10.9.2",
92-
"tweakpane": "^4.0.5",
93-
"typescript": "5.8.3",
94-
"typescript-eslint": "^8.32.1",
95-
"vite": "6.3.5",
96-
"vitest-webgl-canvas-mock": "^1.1.0"
97-
},
98-
"dependencies": {
99-
"@angular/animations": "20.0.3",
100-
"@angular/common": "20.0.3",
101-
"@angular/compiler": "20.0.3",
102-
"@angular/core": "20.0.3",
103-
"@angular/forms": "20.0.3",
104-
"@angular/platform-browser": "20.0.3",
105-
"@angular/platform-browser-dynamic": "20.0.3",
106-
"@angular/platform-server": "20.0.3",
107-
"@angular/router": "20.0.3",
108-
"@dimforge/rapier3d-compat": "^0.17.1",
109-
"@monogrid/gainmap-js": "^3.1.0",
110-
"@pmndrs/cannon-worker-api": "^2.4.0",
111-
"@pmndrs/vanilla": "^1.20.4",
112-
"@swc/helpers": "0.5.17",
113-
"@theatre/core": "^0.7.2",
114-
"@theatre/studio": "^0.7.2",
115-
"camera-controls": "^2.10.1",
116-
"cannon-es": "^0.20.0",
117-
"cannon-es-debugger": "^1.0.0",
118-
"front-matter": "^4.0.2",
119-
"gl-noise": "^1.6.1",
120-
"gsap": "^3.13.0",
121-
"hls.js": "^1.6.2",
122-
"maath": "^0.10.8",
123-
"meshline": "^3.3.1",
124-
"n8ao": "^1.10.0",
125-
"ngxtension": "^5.0.0",
126-
"rxjs": "~7.8.2",
127-
"stats-gl": "^3.6.0",
128-
"three-custom-shader-material": "~6.3.7",
129-
"three-mesh-bvh": "^0.9.0",
130-
"three-stdlib": "^2.36.0",
131-
"troika-three-text": "^0.52.4",
132-
"tslib": "^2.8.1",
133-
"zone.js": "0.15.1"
134-
},
135-
"web-types": [
136-
"node_modules/angular-three/web-types.json",
137-
"node_modules/angular-three-soba/web-types.json"
138-
],
139-
"config": {
140-
"commitizen": {
141-
"path": "node_modules/cz-git",
142-
"czConfig": "cz.config.js"
143-
}
144-
},
145-
"packageManager": "pnpm@9.15.4",
146-
"nx": {
147-
"targets": {
148-
"generate-json": {
149-
"executor": "nx:run-commands",
150-
"options": {
151-
"commands": [
152-
"node ./tools/scripts/json/index.mjs"
153-
],
154-
"parallel": true
155-
}
156-
}
157-
}
158-
},
159-
"pnpm": {
160-
"patchedDependencies": {
161-
"@nx/angular": "patches/@nx__angular.patch"
162-
}
163-
}
164-
}
2+
"name": "@platform/source",
3+
"version": "0.0.0",
4+
"license": "MIT",
5+
"scripts": {
6+
"**comments**": "these scripts are here for convenience to debugging",
7+
"generate-json": "node tools/scripts/json/index.mjs",
8+
"generate-soba": "node tools/scripts/generate-soba-json.mjs",
9+
"commit": "czg",
10+
"package_old": "nx run-many -t build --projects=core,cannon,postprocessing,soba,rapier,plugin-old && nx generate-json @platform/source",
11+
"package": "nx run-many -t build --projects=core,cannon,postprocessing,soba,rapier,plugin,tweakpane,theatre && nx generate-json @platform/source --skip-nx-cache"
12+
},
13+
"private": true,
14+
"devDependencies": {
15+
"@angular-devkit/build-angular": "20.0.2",
16+
"@angular-devkit/core": "20.0.2",
17+
"@angular-devkit/schematics": "20.0.2",
18+
"@angular-eslint/eslint-plugin": "20.0.0",
19+
"@angular-eslint/eslint-plugin-template": "20.0.0",
20+
"@angular-eslint/template-parser": "20.0.0",
21+
"@angular/build": "20.0.2",
22+
"@angular/cli": "~20.0.0",
23+
"@angular/compiler-cli": "20.0.3",
24+
"@angular/language-service": "20.0.3",
25+
"@chromatic-com/storybook": "^4.0.0",
26+
"@eslint/eslintrc": "^2.1.1",
27+
"@nx/angular": "21.2.0",
28+
"@nx/cypress": "21.2.0",
29+
"@nx/devkit": "21.2.0",
30+
"@nx/eslint": "21.2.0",
31+
"@nx/eslint-plugin": "21.2.0",
32+
"@nx/jest": "21.2.0",
33+
"@nx/js": "21.2.0",
34+
"@nx/plugin": "21.2.0",
35+
"@nx/storybook": "21.2.0",
36+
"@nx/vite": "21.2.0",
37+
"@nx/web": "21.2.0",
38+
"@nx/workspace": "21.2.0",
39+
"@phenomnomnominal/tsquery": "^6.1.3",
40+
"@rosskevin/gltfjsx": "^7.1.3",
41+
"@schematics/angular": "20.0.2",
42+
"@storybook/addon-docs": "^9.0.9",
43+
"@storybook/angular": "9.0.9",
44+
"@storybook/test-runner": "0.23.0",
45+
"@swc-node/register": "1.10.10",
46+
"@swc/cli": "0.7.7",
47+
"@swc/core": "1.11.29",
48+
"@tweakpane/core": "^2.0.5",
49+
"@types/jest": "29.5.14",
50+
"@types/node": "20.14.12",
51+
"@types/three": "^0.176.0",
52+
"@typescript-eslint/utils": "8.32.1",
53+
"autoprefixer": "^10.4.21",
54+
"cypress": "14.3.3",
55+
"cz-git": "^1.11.1",
56+
"czg": "^1.11.1",
57+
"dotenv-cli": "^8.0.0",
58+
"enquirer": "^2.4.1",
59+
"eslint": "9.27.0",
60+
"eslint-config-prettier": "10.1.5",
61+
"eslint-plugin-cypress": "^2.13.4",
62+
"eslint-plugin-storybook": "9.0.9",
63+
"glslify-loader": "^2.0.0",
64+
"jest": "29.7.0",
65+
"jest-environment-jsdom": "29.7.0",
66+
"jest-environment-node": "^29.7.0",
67+
"jest-preset-angular": "14.6.0",
68+
"jiti": "2.4.2",
69+
"jsdom": "^24.1.1",
70+
"jsonc-eslint-parser": "^2.4.0",
71+
"ng-packagr": "20.0.0",
72+
"node-three-gltf": "^2.0.2",
73+
"nx": "21.2.0",
74+
"postcss": "^8.5.3",
75+
"postcss-import": "~16.1.0",
76+
"postcss-preset-env": "~9.6.0",
77+
"postcss-url": "~10.1.3",
78+
"postprocessing": "^6.37.3",
79+
"prettier": "^3.5.3",
80+
"prettier-plugin-organize-imports": "^4.1.0",
81+
"storybook": "9.0.9",
82+
"storybook-addon-deep-controls": "^0.9.3",
83+
"tailwindcss": "^3.4.17",
84+
"three": "^0.176.0",
85+
"ts-jest": "^29.3.4",
86+
"ts-morph": "^26.0.0",
87+
"ts-node": "10.9.2",
88+
"tweakpane": "^4.0.5",
89+
"typescript": "5.8.3",
90+
"typescript-eslint": "^8.32.1",
91+
"vite": "6.3.5",
92+
"vitest-webgl-canvas-mock": "^1.1.0"
93+
},
94+
"dependencies": {
95+
"@angular/animations": "20.0.3",
96+
"@angular/common": "20.0.3",
97+
"@angular/compiler": "20.0.3",
98+
"@angular/core": "20.0.3",
99+
"@angular/forms": "20.0.3",
100+
"@angular/platform-browser": "20.0.3",
101+
"@angular/platform-browser-dynamic": "20.0.3",
102+
"@angular/platform-server": "20.0.3",
103+
"@angular/router": "20.0.3",
104+
"@dimforge/rapier3d-compat": "^0.17.1",
105+
"@monogrid/gainmap-js": "^3.1.0",
106+
"@pmndrs/cannon-worker-api": "^2.4.0",
107+
"@pmndrs/vanilla": "^1.20.4",
108+
"@swc/helpers": "0.5.17",
109+
"@theatre/core": "^0.7.2",
110+
"@theatre/studio": "^0.7.2",
111+
"camera-controls": "^2.10.1",
112+
"cannon-es": "^0.20.0",
113+
"cannon-es-debugger": "^1.0.0",
114+
"front-matter": "^4.0.2",
115+
"gl-noise": "^1.6.1",
116+
"gsap": "^3.13.0",
117+
"hls.js": "^1.6.2",
118+
"maath": "^0.10.8",
119+
"meshline": "^3.3.1",
120+
"n8ao": "^1.10.0",
121+
"ngxtension": "^5.0.0",
122+
"rxjs": "~7.8.2",
123+
"stats-gl": "^3.6.0",
124+
"three-custom-shader-material": "~6.3.7",
125+
"three-mesh-bvh": "^0.9.0",
126+
"three-stdlib": "^2.36.0",
127+
"troika-three-text": "^0.52.4",
128+
"tslib": "^2.8.1",
129+
"zone.js": "0.15.1"
130+
},
131+
"web-types": [
132+
"node_modules/angular-three/web-types.json",
133+
"node_modules/angular-three-soba/web-types.json"
134+
],
135+
"config": {
136+
"commitizen": {
137+
"path": "node_modules/cz-git",
138+
"czConfig": "cz.config.js"
139+
}
140+
},
141+
"packageManager": "pnpm@9.15.4",
142+
"nx": {
143+
"targets": {
144+
"generate-json": {
145+
"executor": "nx:run-commands",
146+
"options": {
147+
"commands": [
148+
"node ./tools/scripts/json/index.mjs"
149+
],
150+
"parallel": true
151+
}
152+
}
153+
}
154+
},
155+
"pnpm": {
156+
"patchedDependencies": {
157+
"@nx/angular": "patches/@nx__angular.patch"
158+
}
159+
}
160+
}

0 commit comments

Comments
 (0)
Please sign in to comment.