Merge pull request #18001 from yngvebn/angular-builder-webpack-stats-json

Angular: Add webpackStatsJson to angular-builder
This commit is contained in:
Michael Shilman 2022-04-25 23:31:23 +08:00 committed by GitHub
commit aa74f4f6a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 1 deletions

View File

@ -84,6 +84,7 @@ describe('Build Storybook Builder', () => {
outputDir: 'storybook-static',
mode: 'static',
tsConfig: './storybook/tsconfig.ts',
webpackStatsJson: false,
});
});
@ -109,6 +110,34 @@ describe('Build Storybook Builder', () => {
outputDir: 'storybook-static',
mode: 'static',
tsConfig: 'path/to/tsConfig.json',
webpackStatsJson: false,
});
});
it('should build storybook with webpack stats.json', async () => {
const run = await architect.scheduleBuilder('@storybook/angular:build-storybook', {
tsConfig: 'path/to/tsConfig.json',
compodoc: false,
webpackStatsJson: true,
});
const output = await run.result;
await run.stop();
expect(output.success).toBeTruthy();
expect(cpSpawnMock.spawn).not.toHaveBeenCalledWith();
expect(buildStandaloneMock).toHaveBeenCalledWith({
angularBrowserTarget: null,
angularBuilderContext: expect.any(Object),
angularBuilderOptions: {},
configDir: '.storybook',
loglevel: undefined,
quiet: false,
outputDir: 'storybook-static',
mode: 'static',
tsConfig: 'path/to/tsConfig.json',
webpackStatsJson: true,
});
});
@ -162,6 +191,7 @@ describe('Build Storybook Builder', () => {
outputDir: 'storybook-static',
mode: 'static',
tsConfig: './storybook/tsconfig.ts',
webpackStatsJson: false,
});
});
@ -188,6 +218,7 @@ describe('Build Storybook Builder', () => {
outputDir: 'storybook-static',
mode: 'static',
tsConfig: 'path/to/tsConfig.json',
webpackStatsJson: false,
});
});
});

View File

@ -31,7 +31,7 @@ export type StorybookBuilderOptions = JsonObject & {
} & Pick<
// makes sure the option exists
CLIOptions,
'outputDir' | 'configDir' | 'loglevel' | 'quiet' | 'docs'
'outputDir' | 'configDir' | 'loglevel' | 'quiet' | 'docs' | 'webpackStatsJson'
>;
export type StorybookBuilderOutput = JsonObject & BuilderOutput & {};
@ -62,6 +62,7 @@ function commandBuilder(
loglevel,
outputDir,
quiet,
webpackStatsJson,
} = options;
const standaloneOptions: StandaloneOptions = {
@ -77,6 +78,7 @@ function commandBuilder(
...(styles ? { styles } : {}),
},
tsConfig,
webpackStatsJson,
};
return standaloneOptions;
}),

View File

@ -52,6 +52,11 @@
"type": "string"
}
},
"webpackStatsJson": {
"type": "boolean",
"description": "Write Webpack Stats JSON to disk",
"default": false
},
"styles": {
"type": "array",
"description": "Global styles to be included in the build.",