Skip to content

Commit d3569c6

Browse files
mandariniFrozenPandaz
authored andcommittedAug 23, 2023
fix(storybook): install nx/vite for non-buildable libs (#18778)
(cherry picked from commit 57463ed)
1 parent 2c496d0 commit d3569c6

File tree

6 files changed

+52
-13
lines changed

6 files changed

+52
-13
lines changed
 

‎packages/react/src/generators/storybook-configuration/__snapshots__/configuration.spec.ts.snap

+9-5
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,21 @@
33
exports[`react:storybook-configuration should configure everything and install correct dependencies 1`] = `
44
"import type { StorybookConfig } from '@storybook/react-vite';
55
6+
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
7+
import { mergeConfig } from 'vite';
8+
69
const config: StorybookConfig = {
710
stories: ['../src/lib/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
811
addons: ['@storybook/addon-essentials', '@storybook/addon-interactions'],
912
framework: {
1013
name: '@storybook/react-vite',
11-
options: {
12-
builder: {
13-
viteConfigPath: '',
14-
},
15-
},
14+
options: {},
1615
},
16+
17+
viteFinal: async (config) =>
18+
mergeConfig(config, {
19+
plugins: [nxViteTsPaths()],
20+
}),
1721
};
1822
1923
export default config;

‎packages/storybook/src/generators/configuration/__snapshots__/configuration-nested.spec.ts.snap

+9-5
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,21 @@
33
exports[`@nx/storybook:configuration for workspaces with Root project basic functionalities should generate Storybook files for nested project only 1`] = `
44
"import type { StorybookConfig } from '@storybook/react-vite';
55
6+
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
7+
import { mergeConfig } from 'vite';
8+
69
const config: StorybookConfig = {
710
stories: ['../src/app/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
811
addons: ['@storybook/addon-essentials', '@storybook/addon-interactions'],
912
framework: {
1013
name: '@storybook/react-vite',
11-
options: {
12-
builder: {
13-
viteConfigPath: '',
14-
},
15-
},
14+
options: {},
1615
},
16+
17+
viteFinal: async (config) =>
18+
mergeConfig(config, {
19+
plugins: [nxViteTsPaths()],
20+
}),
1721
};
1822
1923
export default config;

‎packages/storybook/src/generators/configuration/configuration.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ describe('@nx/storybook:configuration for Storybook v7', () => {
9898
await configurationGenerator(tree, {
9999
name: 'test-ui-lib',
100100
standaloneConfig: false,
101-
102101
uiFramework: '@storybook/react-webpack5',
103102
});
104103
const tsconfigJson = readJson<TsConfig>(

‎packages/storybook/src/generators/configuration/configuration.ts

+11
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,17 @@ export async function configurationGenerator(
198198
devDeps['core-js'] = coreJsVersion;
199199
}
200200

201+
if (
202+
schema.uiFramework.endsWith('-vite') &&
203+
(!viteBuildTarget || !viteConfigFilePath)
204+
) {
205+
// This means that the user has selected a Vite framework
206+
// but the project does not have Vite configuration.
207+
// We need to install the @nx/vite plugin in order to be able to use
208+
// the nxViteTsPaths plugin to register the tsconfig paths in Vite.
209+
devDeps['@nx/vite'] = nxVersion;
210+
}
211+
201212
tasks.push(addDependenciesToPackageJson(tree, {}, devDeps));
202213

203214
if (!schema.skipFormat) {

‎packages/storybook/src/generators/configuration/project-files-ts/.storybook/main.ts__tmpl__

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
import type { StorybookConfig } from '<%= uiFramework %>';
2+
<% if (usesVite && !viteConfigFilePath) { %>
3+
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
4+
import { mergeConfig } from 'vite';
5+
<% } %>
26

37
const config: StorybookConfig = {
48
stories: [
@@ -10,13 +14,19 @@ const config: StorybookConfig = {
1014
framework: {
1115
name: '<%= uiFramework %>',
1216
options: {
13-
<% if (usesVite) { %>
17+
<% if (usesVite && viteConfigFilePath) { %>
1418
builder: {
1519
viteConfigPath: '<%= viteConfigFilePath %>',
1620
},
1721
<% } %>
1822
},
1923
},
24+
<% if (usesVite && !viteConfigFilePath) { %>
25+
viteFinal: async (config) =>
26+
mergeConfig(config, {
27+
plugins: [nxViteTsPaths()],
28+
}),
29+
<% } %>
2030
};
2131

2232
export default config;

‎packages/storybook/src/generators/configuration/project-files/.storybook/main.js__tmpl__

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<% if (usesVite && !viteConfigFilePath) { %>
2+
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
3+
import { mergeConfig } from 'vite';
4+
<% } %>
5+
16
const config = {
27
stories: [
38
<% if(uiFramework === '@storybook/angular' && projectType === 'library') { %>
@@ -8,13 +13,19 @@ const config = {
813
framework: {
914
name: '<%= uiFramework %>',
1015
options: {
11-
<% if (usesVite) { %>
16+
<% if (usesVite && viteConfigFilePath) { %>
1217
builder: {
1318
viteConfigPath: '<%= viteConfigFilePath %>',
1419
},
1520
<% } %>
1621
},
1722
},
23+
<% if (usesVite && !viteConfigFilePath) { %>
24+
viteFinal: async (config) =>
25+
mergeConfig(config, {
26+
plugins: [nxViteTsPaths()],
27+
}),
28+
<% } %>
1829
};
1930

2031
export default config;

0 commit comments

Comments
 (0)
Please sign in to comment.