Skip to content

Commit 213fc16

Browse files
committed
chore(repo): upgrade nx 19.6
1 parent fd37f28 commit 213fc16

File tree

6 files changed

+2461
-3418
lines changed

6 files changed

+2461
-3418
lines changed

doctor-storybook.log

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
🩺 The doctor is checking the health of your Storybook..
2+
╭ Duplicated dependencies found ─────────────────────────────────────────────────────────────────────────╮
3+
│ │
4+
│ Attention: The following dependencies are duplicated which might cause unexpected behavior: │
5+
│ @storybook/preview-api: │
6+
│ 8.2.6, 8.2.9 │
7+
│ │
8+
│ │
9+
│ Please try de-duplicating these dependencies by running pnpm dedupe │
10+
│ │
11+
│ │
12+
│ You can find more information for a given dependency by running pnpm list --depth=1 <package-name> │
13+
│ │
14+
╰────────────────────────────────────────────────────────────────────────────────────────────────────────╯
15+
16+
You can always recheck the health of your project by running:
17+
npx storybook doctor
18+
19+
Full logs are available in /Users/nartc/code/github/angular-threejs/angular-three/doctor-storybook.log
20+

libs/soba/.storybook/main.ts

+14-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@ import type { StorybookConfig } from '@storybook/angular';
22
import { resolve } from 'node:path';
33

44
const config: StorybookConfig = {
5-
stories: ['../**/*.mdx', '../**/*.stories.@(js|ts)'],
6-
addons: ['@storybook/addon-essentials', 'storybook-addon-deep-controls'],
7-
webpackFinal: async (config) => {
5+
stories: ['../**/*.mdx', '../**/*.stories.@(js|ts)'],
6+
addons: [
7+
'@storybook/addon-essentials',
8+
'storybook-addon-deep-controls',
9+
'@chromatic-com/storybook'
10+
],
11+
12+
webpackFinal: async (config) => {
813
config.module?.rules?.push({
914
test: /\.(glsl|vs|fs|vert|frag)$/,
1015
exclude: /node_modules/,
@@ -14,11 +19,15 @@ const config: StorybookConfig = {
1419

1520
return config;
1621
},
17-
staticDirs: ['./public', './public/cube'],
18-
framework: {
22+
23+
staticDirs: ['./public', './public/cube'],
24+
25+
framework: {
1926
name: '@storybook/angular',
2027
options: {},
2128
},
29+
30+
docs: {}
2231
};
2332

2433
export default config;

migrations.json

+11-21
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
11
{
2-
"migrations": [
3-
{
4-
"cli": "nx",
5-
"version": "19.5.0-beta.1",
6-
"requires": {
7-
"@angular/core": ">=18.1.0"
8-
},
9-
"description": "Update the @angular/cli package version to ~18.1.0.",
10-
"factory": "./src/migrations/update-19-5-0/update-angular-cli",
11-
"package": "@nx/angular",
12-
"name": "update-angular-cli-version-18-1-0"
13-
},
14-
{
15-
"version": "18.1.0",
16-
"description": "Updates calls to afterRender with an explicit phase to the new API",
17-
"factory": "./migrations/after-render-phase/bundle",
18-
"package": "@angular/core",
19-
"name": "migration-after-render-phase"
20-
}
21-
]
22-
}
2+
"migrations": [
3+
{
4+
"cli": "nx",
5+
"version": "19.6.0-beta.4",
6+
"description": "Update ciWebServerCommand to use static serve for the application.",
7+
"implementation": "./src/migrations/update-19-6-0/update-ci-webserver-for-static-serve",
8+
"package": "@nx/cypress",
9+
"name": "update-19-6-0-update-ci-webserver-for-vite"
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)