mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Allow to set configuration in angularBrowserTarget
This commit is contained in:
parent
5d5b6ee8c1
commit
82368bd8d7
@ -12,7 +12,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"target-project": {
|
"no-confs-project": {
|
||||||
"root": "",
|
"root": "",
|
||||||
"architect": {
|
"architect": {
|
||||||
"target-build": {
|
"target-build": {
|
||||||
@ -22,6 +22,38 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"no-target-conf-project": {
|
||||||
|
"root": "",
|
||||||
|
"architect": {
|
||||||
|
"target-build": {
|
||||||
|
"options": {
|
||||||
|
"tsConfig": "src/tsconfig.app.json",
|
||||||
|
"assets": []
|
||||||
|
},
|
||||||
|
"configurations": {
|
||||||
|
"other-conf": {
|
||||||
|
"styles": ["src/styles.css"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"target-project": {
|
||||||
|
"root": "",
|
||||||
|
"architect": {
|
||||||
|
"target-build": {
|
||||||
|
"options": {
|
||||||
|
"tsConfig": "src/tsconfig.app.json",
|
||||||
|
"assets": []
|
||||||
|
},
|
||||||
|
"configurations": {
|
||||||
|
"target-conf": {
|
||||||
|
"styles": ["src/styles.css"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultProject": "foo-project"
|
"defaultProject": "foo-project"
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
.class {
|
||||||
|
}
|
@ -66,9 +66,22 @@ const importAngularCliReadTsconfigUtil = (): typeof import('@angular-devkit/buil
|
|||||||
const buildWebpackConfigOptions = async (
|
const buildWebpackConfigOptions = async (
|
||||||
dirToSearch: string,
|
dirToSearch: string,
|
||||||
project: workspaces.ProjectDefinition,
|
project: workspaces.ProjectDefinition,
|
||||||
target: workspaces.TargetDefinition
|
target: workspaces.TargetDefinition,
|
||||||
|
confName?: string
|
||||||
): Promise<WebpackConfigOptions> => {
|
): Promise<WebpackConfigOptions> => {
|
||||||
const { options: projectBuildOptions = {} } = target;
|
let conf: Record<string, unknown> = {};
|
||||||
|
|
||||||
|
if (confName) {
|
||||||
|
if (!target.configurations) {
|
||||||
|
throw new Error('Missing "configurations" section in project target');
|
||||||
|
}
|
||||||
|
if (!target.configurations[confName]) {
|
||||||
|
throw new Error(`Missing required configuration in project target. Check "${confName}"`);
|
||||||
|
}
|
||||||
|
conf = target.configurations[confName];
|
||||||
|
}
|
||||||
|
|
||||||
|
const projectBuildOptions = { ...target.options, ...conf };
|
||||||
|
|
||||||
const requiredOptions = ['tsConfig'];
|
const requiredOptions = ['tsConfig'];
|
||||||
if (!requiredOptions.every((key) => !!projectBuildOptions[key])) {
|
if (!requiredOptions.every((key) => !!projectBuildOptions[key])) {
|
||||||
@ -159,11 +172,17 @@ export type AngularCliWebpackConfig = {
|
|||||||
export async function extractAngularCliWebpackConfig(
|
export async function extractAngularCliWebpackConfig(
|
||||||
dirToSearch: string,
|
dirToSearch: string,
|
||||||
project: workspaces.ProjectDefinition,
|
project: workspaces.ProjectDefinition,
|
||||||
target: workspaces.TargetDefinition
|
target: workspaces.TargetDefinition,
|
||||||
|
confName?: string
|
||||||
): Promise<AngularCliWebpackConfig> {
|
): Promise<AngularCliWebpackConfig> {
|
||||||
const { getCommonConfig, getStylesConfig } = importAngularCliWebpackConfigGenerator();
|
const { getCommonConfig, getStylesConfig } = importAngularCliWebpackConfigGenerator();
|
||||||
|
|
||||||
const webpackConfigOptions = await buildWebpackConfigOptions(dirToSearch, project, target);
|
const webpackConfigOptions = await buildWebpackConfigOptions(
|
||||||
|
dirToSearch,
|
||||||
|
project,
|
||||||
|
target,
|
||||||
|
confName
|
||||||
|
);
|
||||||
|
|
||||||
const cliCommonConfig = getCommonConfig(webpackConfigOptions);
|
const cliCommonConfig = getCommonConfig(webpackConfigOptions);
|
||||||
const cliStyleConfig = getStylesConfig(webpackConfigOptions);
|
const cliStyleConfig = getStylesConfig(webpackConfigOptions);
|
||||||
|
@ -613,6 +613,71 @@ describe('framework-preset-angular-cli', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('with angularBrowserTarget option with configuration', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
initMockWorkspace('with-angularBrowserTarget');
|
||||||
|
});
|
||||||
|
describe('when angular.json have the target without "configurations" section', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
options = { angularBrowserTarget: 'no-confs-project:target-build:target-conf' } as Options;
|
||||||
|
});
|
||||||
|
it('throws error', async () => {
|
||||||
|
await expect(() => webpackFinal(newWebpackConfiguration(), options)).rejects.toThrowError(
|
||||||
|
'Missing "configurations" section in project target'
|
||||||
|
);
|
||||||
|
expect(logger.error).toHaveBeenCalledWith(`=> Could not get angular cli webpack config`);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
describe('when angular.json have the target without required configuration', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
options = {
|
||||||
|
angularBrowserTarget: 'no-target-conf-project:target-build:target-conf',
|
||||||
|
} as Options;
|
||||||
|
});
|
||||||
|
it('throws error', async () => {
|
||||||
|
await expect(() => webpackFinal(newWebpackConfiguration(), options)).rejects.toThrowError(
|
||||||
|
'Missing required configuration in project target. Check "target-conf"'
|
||||||
|
);
|
||||||
|
expect(logger.error).toHaveBeenCalledWith(`=> Could not get angular cli webpack config`);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
describe('when angular.json have the target with required configuration', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
options = { angularBrowserTarget: 'target-project:target-build:target-conf' } as Options;
|
||||||
|
});
|
||||||
|
it('should log', async () => {
|
||||||
|
const baseWebpackConfig = newWebpackConfiguration();
|
||||||
|
await webpackFinal(baseWebpackConfig, options);
|
||||||
|
|
||||||
|
expect(logger.info).toHaveBeenCalledTimes(3);
|
||||||
|
expect(logger.info).toHaveBeenNthCalledWith(1, '=> Loading angular-cli config');
|
||||||
|
expect(logger.info).toHaveBeenNthCalledWith(
|
||||||
|
2,
|
||||||
|
'=> Using angular project "target-project:target-build:target-conf" for configuring Storybook'
|
||||||
|
);
|
||||||
|
expect(logger.info).toHaveBeenNthCalledWith(3, '=> Using angular-cli webpack config');
|
||||||
|
});
|
||||||
|
it('should extends webpack base config', async () => {
|
||||||
|
const baseWebpackConfig = newWebpackConfiguration();
|
||||||
|
const webpackFinalConfig = await webpackFinal(baseWebpackConfig, options);
|
||||||
|
|
||||||
|
expect(webpackFinalConfig).toEqual({
|
||||||
|
...baseWebpackConfig,
|
||||||
|
entry: [...(baseWebpackConfig.entry as any[]), `${workspaceRoot}/src/styles.css`],
|
||||||
|
module: { ...baseWebpackConfig.module, rules: expect.anything() },
|
||||||
|
plugins: expect.anything(),
|
||||||
|
resolve: {
|
||||||
|
...baseWebpackConfig.resolve,
|
||||||
|
modules: expect.arrayContaining(baseWebpackConfig.resolve.modules),
|
||||||
|
// the base resolve.plugins are not kept 🤷♂️
|
||||||
|
plugins: expect.not.arrayContaining(baseWebpackConfig.resolve.plugins),
|
||||||
|
},
|
||||||
|
resolveLoader: expect.anything(),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe('with only tsConfig option', () => {
|
describe('with only tsConfig option', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
initMockWorkspace('without-projects-entry');
|
initMockWorkspace('without-projects-entry');
|
||||||
|
@ -46,6 +46,7 @@ export async function webpackFinal(baseConfig: webpack.Configuration, options: O
|
|||||||
// Find angular project target
|
// Find angular project target
|
||||||
let project: workspaces.ProjectDefinition;
|
let project: workspaces.ProjectDefinition;
|
||||||
let target: workspaces.TargetDefinition;
|
let target: workspaces.TargetDefinition;
|
||||||
|
let confName: string;
|
||||||
try {
|
try {
|
||||||
// Default behavior when `angularBrowserTarget` are not explicitly defined to null
|
// Default behavior when `angularBrowserTarget` are not explicitly defined to null
|
||||||
if (options.angularBrowserTarget !== null) {
|
if (options.angularBrowserTarget !== null) {
|
||||||
@ -64,9 +65,12 @@ export async function webpackFinal(baseConfig: webpack.Configuration, options: O
|
|||||||
);
|
);
|
||||||
project = fondProject.project;
|
project = fondProject.project;
|
||||||
target = fondProject.target;
|
target = fondProject.target;
|
||||||
|
confName = browserTarget.configuration;
|
||||||
|
|
||||||
logger.info(
|
logger.info(
|
||||||
`=> Using angular project "${browserTarget.project}:${browserTarget.target}" for configuring Storybook`
|
`=> Using angular project "${browserTarget.project}:${browserTarget.target}${
|
||||||
|
confName ? `:${confName}` : ''
|
||||||
|
}" for configuring Storybook`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// Start storybook when only tsConfig is provided.
|
// Start storybook when only tsConfig is provided.
|
||||||
@ -85,7 +89,12 @@ export async function webpackFinal(baseConfig: webpack.Configuration, options: O
|
|||||||
// Use angular-cli to get some webpack config
|
// Use angular-cli to get some webpack config
|
||||||
let angularCliWebpackConfig: AngularCliWebpackConfig;
|
let angularCliWebpackConfig: AngularCliWebpackConfig;
|
||||||
try {
|
try {
|
||||||
angularCliWebpackConfig = await extractAngularCliWebpackConfig(dirToSearch, project, target);
|
angularCliWebpackConfig = await extractAngularCliWebpackConfig(
|
||||||
|
dirToSearch,
|
||||||
|
project,
|
||||||
|
target,
|
||||||
|
confName
|
||||||
|
);
|
||||||
logger.info(`=> Using angular-cli webpack config`);
|
logger.info(`=> Using angular-cli webpack config`);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.error(`=> Could not get angular cli webpack config`);
|
logger.error(`=> Could not get angular cli webpack config`);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user