mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
feat(angular): integrate addon-ivy
This addon integrates storybook-angular-addon-ivy into the mono-repo. This allows us to remove the ivy addon package.
This commit is contained in:
parent
1eb3d28e79
commit
e6f6f679ce
53
app/angular/src/server/framework-preset-angular-ivy.ts
Normal file
53
app/angular/src/server/framework-preset-angular-ivy.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { Configuration } from 'webpack';
|
||||||
|
import { process as ngccProcess } from '@angular/compiler-cli/ngcc';
|
||||||
|
import * as path from 'path';
|
||||||
|
import { Options } from './framework-preset-angular-cli';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run ngcc for converting modules to ivy format before starting storybook
|
||||||
|
* This step is needed in order to support Ivy in storybook
|
||||||
|
*
|
||||||
|
* Information about Ivy can be found here https://angular.io/guide/ivy
|
||||||
|
*/
|
||||||
|
export const runNgcc = () => {
|
||||||
|
ngccProcess({
|
||||||
|
// should be async: true but does not work due to
|
||||||
|
// https://github.com/storybookjs/storybook/pull/11157/files#r615413803
|
||||||
|
async: false,
|
||||||
|
basePath: path.join(process.cwd(), 'node_modules'), // absolute path to node_modules
|
||||||
|
createNewEntryPointFormats: true, // --create-ivy-entry-points
|
||||||
|
compileAllFormats: false, // --first-only
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const webpack = async (webpackConfig: Configuration, options: Options) => {
|
||||||
|
const angularOptions = await options.presets.apply(
|
||||||
|
'angularOptions',
|
||||||
|
{} as {
|
||||||
|
enableIvy?: boolean;
|
||||||
|
},
|
||||||
|
options
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!angularOptions.enableIvy) {
|
||||||
|
return webpackConfig;
|
||||||
|
}
|
||||||
|
|
||||||
|
runNgcc();
|
||||||
|
|
||||||
|
return {
|
||||||
|
...webpackConfig,
|
||||||
|
resolve: {
|
||||||
|
...webpackConfig.resolve,
|
||||||
|
mainFields: [
|
||||||
|
'es2015_ivy_ngcc',
|
||||||
|
'module_ivy_ngcc',
|
||||||
|
'main_ivy_ngcc',
|
||||||
|
'es2015',
|
||||||
|
'browser',
|
||||||
|
'module',
|
||||||
|
'main',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
@ -7,5 +7,6 @@ export default {
|
|||||||
frameworkPresets: [
|
frameworkPresets: [
|
||||||
require.resolve('./framework-preset-angular'),
|
require.resolve('./framework-preset-angular'),
|
||||||
require.resolve('./framework-preset-angular-cli'),
|
require.resolve('./framework-preset-angular-cli'),
|
||||||
|
require.resolve('./framework-preset-angular-ivy'),
|
||||||
],
|
],
|
||||||
} as LoadOptions;
|
} as LoadOptions;
|
||||||
|
7
app/angular/src/types/index.ts
Normal file
7
app/angular/src/types/index.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { StorybookConfig as BaseConfig } from '@storybook/core-common';
|
||||||
|
|
||||||
|
export interface StorybookConfig extends BaseConfig {
|
||||||
|
angularOptions?: {
|
||||||
|
enableIvy: boolean;
|
||||||
|
};
|
||||||
|
}
|
@ -15,4 +15,7 @@ module.exports = {
|
|||||||
core: {
|
core: {
|
||||||
builder: 'webpack4',
|
builder: 'webpack4',
|
||||||
},
|
},
|
||||||
|
angularOptions: {
|
||||||
|
enableIvy: true,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user