mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
FIX RN
This commit is contained in:
parent
d468572706
commit
b15048aa8f
@ -51,8 +51,8 @@
|
||||
"ejs": "^2.6.1",
|
||||
"express": "^4.16.3",
|
||||
"find-cache-dir": "^2.0.0",
|
||||
"generate-page-webpack-plugin": "^1.1.1",
|
||||
"global": "^4.3.2",
|
||||
"html-webpack-plugin": "^4.0.0-beta.1",
|
||||
"json5": "^2.1.0",
|
||||
"prop-types": "^15.6.2",
|
||||
"raw-loader": "^0.5.1",
|
||||
|
@ -4,8 +4,7 @@ import { getEnvironment } from 'universal-dotenv';
|
||||
import Dotenv from 'dotenv-webpack';
|
||||
import WatchMissingNodeModulesPlugin from 'react-dev-utils/WatchMissingNodeModulesPlugin';
|
||||
import CaseSensitivePathsPlugin from 'case-sensitive-paths-webpack-plugin';
|
||||
|
||||
import GeneratePagePlugin from 'generate-page-webpack-plugin';
|
||||
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
||||
|
||||
import { getManagerHeadHtml } from '@storybook/core/server';
|
||||
|
||||
@ -31,21 +30,20 @@ const getConfig = options => {
|
||||
publicPath: '/',
|
||||
},
|
||||
plugins: [
|
||||
new GeneratePagePlugin(
|
||||
{
|
||||
template: require.resolve('@storybook/core/dist/server/templates/index.html.ejs'),
|
||||
// eslint-disable-next-line global-require
|
||||
parser: require('ejs'),
|
||||
filename: entry => (entry === 'manager' ? 'index' : entry),
|
||||
},
|
||||
{
|
||||
data: { version },
|
||||
headHtmlSnippet: entry =>
|
||||
entriesMeta[entry] ? entriesMeta[entry].headHtmlSnippet : null,
|
||||
bodyHtmlSnippet: entry =>
|
||||
entriesMeta[entry] ? entriesMeta[entry].bodyHtmlSnippet : null,
|
||||
}
|
||||
),
|
||||
new HtmlWebpackPlugin({
|
||||
filename: `index.html`,
|
||||
chunksSortMode: 'none',
|
||||
alwaysWriteToDisk: true,
|
||||
inject: false,
|
||||
templateParameters: (compilation, files, o) => ({
|
||||
compilation,
|
||||
files,
|
||||
options: o,
|
||||
version,
|
||||
...entriesMeta.manager,
|
||||
}),
|
||||
template: require.resolve(`@storybook/core/dist/server/templates/index.html.ejs`),
|
||||
}),
|
||||
new webpack.HotModuleReplacementPlugin(),
|
||||
new CaseSensitivePathsPlugin(),
|
||||
new WatchMissingNodeModulesPlugin(nodeModulesPaths),
|
||||
|
@ -2,13 +2,19 @@ import path from 'path';
|
||||
import webpack from 'webpack';
|
||||
import { getEnvironment } from 'universal-dotenv';
|
||||
import Dotenv from 'dotenv-webpack';
|
||||
import GeneratePagePlugin from 'generate-page-webpack-plugin';
|
||||
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
||||
|
||||
import { getManagerHeadHtml } from '@storybook/core/dist/server/utils';
|
||||
import { version } from '../../../package.json';
|
||||
import { includePaths, excludePaths } from './utils';
|
||||
|
||||
const getConfig = options => {
|
||||
const entriesMeta = {
|
||||
manager: {
|
||||
headHtmlSnippet: getManagerHeadHtml(options.configDir, process.env),
|
||||
},
|
||||
};
|
||||
|
||||
const config = {
|
||||
mode: 'production',
|
||||
bail: true,
|
||||
@ -27,18 +33,20 @@ const getConfig = options => {
|
||||
publicPath: '/',
|
||||
},
|
||||
plugins: [
|
||||
new GeneratePagePlugin(
|
||||
{
|
||||
template: require.resolve('@storybook/core/dist/server/templates/index.html.ejs'),
|
||||
// eslint-disable-next-line global-require
|
||||
parser: require('ejs'),
|
||||
filename: entry => (entry === 'manager' ? 'index' : entry),
|
||||
},
|
||||
{
|
||||
data: { version },
|
||||
headHtmlSnippet: getManagerHeadHtml(options.configDir, process.env),
|
||||
}
|
||||
),
|
||||
new HtmlWebpackPlugin({
|
||||
filename: `index.html`,
|
||||
chunksSortMode: 'none',
|
||||
alwaysWriteToDisk: true,
|
||||
inject: false,
|
||||
templateParameters: (compilation, files, o) => ({
|
||||
compilation,
|
||||
files,
|
||||
options: o,
|
||||
version,
|
||||
...entriesMeta.manager,
|
||||
}),
|
||||
template: require.resolve(`@storybook/core/dist/server/templates/index.html.ejs`),
|
||||
}),
|
||||
new webpack.DefinePlugin({
|
||||
'process.env.NODE_ENV': '"production"',
|
||||
storybookOptions: JSON.stringify(options),
|
||||
|
Loading…
x
Reference in New Issue
Block a user