mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
fix(app/angular): add missing architect.build properties
previously angular-devkit has thrown an error if they were missing fixes #9319
This commit is contained in:
parent
7980eb656c
commit
f419b7fa21
@ -108,6 +108,9 @@ export function getAngularCliWebpackConfigOptions(dirToSearch: Path) {
|
||||
const tsConfigPath = path.resolve(dirToSearch, projectOptions.tsConfig) as Path;
|
||||
const tsConfig = getTsConfigOptions(tsConfigPath);
|
||||
const budgets = projectOptions.budgets || [];
|
||||
const scripts = projectOptions.scripts || [];
|
||||
const outputPath = projectOptions.outputPath || 'dist/storybook-angular';
|
||||
const styles = projectOptions.styles || [];
|
||||
|
||||
return {
|
||||
root: dirToSearch,
|
||||
@ -121,6 +124,9 @@ export function getAngularCliWebpackConfigOptions(dirToSearch: Path) {
|
||||
...projectOptions,
|
||||
assets: normalizedAssets,
|
||||
budgets,
|
||||
scripts,
|
||||
styles,
|
||||
outputPath,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user