mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
15 lines
395 B
JavaScript
15 lines
395 B
JavaScript
import webpack from 'webpack';
|
|
import path from 'path';
|
|
|
|
export const OccurenceOrderPlugin =
|
|
// for webpack 2
|
|
webpack.optimize.OccurrenceOrderPlugin ||
|
|
// for webpack 1
|
|
webpack.optimize.OccurenceOrderPlugin;
|
|
|
|
export const includePaths = [path.resolve('./')];
|
|
|
|
export const excludePaths = [path.resolve('./node_modules')];
|
|
|
|
export const nodeModulesPaths = path.resolve('./node_modules');
|