Sonarr/frontend/gulp/webpack.js

213 lines
4.6 KiB
JavaScript
Raw Normal View History

2017-02-11 06:50:16 +00:00
const gulp = require('gulp');
const webpackStream = require('webpack-stream');
const livereload = require('gulp-livereload');
const path = require('path');
const webpack = require('webpack');
const errorHandler = require('./helpers/errorHandler');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
2018-01-13 02:01:27 +00:00
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
2017-02-11 06:50:16 +00:00
const uiFolder = 'UI';
const root = path.join(__dirname, '..', 'src');
const isProduction = process.argv.indexOf('--production') > -1;
console.log('ROOT:', root);
console.log('isProduction:', isProduction);
2018-01-13 02:01:27 +00:00
const cssVarsFiles = [
2017-02-11 06:50:16 +00:00
'../src/Styles/Variables/colors',
'../src/Styles/Variables/dimensions',
'../src/Styles/Variables/fonts',
'../src/Styles/Variables/animations'
].map(require.resolve);
2018-01-13 02:01:27 +00:00
const extractCSSPlugin = new ExtractTextPlugin({
filename: path.join('_output', uiFolder, 'Content', 'styles.css'),
allChunks: true,
disable: false,
ignoreOrder: true
});
const plugins = [
extractCSSPlugin,
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor'
}),
new webpack.DefinePlugin({
__DEV__: !isProduction,
'process.env.NODE_ENV': isProduction ? JSON.stringify('production') : JSON.stringify('development')
})
];
if (isProduction) {
plugins.push(new UglifyJSPlugin({
sourceMap: true,
uglifyOptions: {
mangle: false,
output: {
comments: false,
beautify: true
}
}
}));
}
2017-02-11 06:50:16 +00:00
const config = {
devtool: '#source-map',
2018-01-13 02:01:27 +00:00
2017-02-11 06:50:16 +00:00
stats: {
children: false
},
2018-01-13 02:01:27 +00:00
2017-02-11 06:50:16 +00:00
watchOptions: {
ignored: /node_modules/
},
2018-01-13 02:01:27 +00:00
2017-02-11 06:50:16 +00:00
entry: {
preload: 'preload.js',
vendor: 'vendor.js',
index: 'index.js'
},
2018-01-13 02:01:27 +00:00
2017-02-11 06:50:16 +00:00
resolve: {
2018-01-13 02:01:27 +00:00
modules: [
2017-02-11 06:50:16 +00:00
root,
path.join(root, 'Shims'),
2018-01-13 02:01:27 +00:00
'node_modules'
],
alias: {
jquery: 'jquery/src/jquery'
}
2017-02-11 06:50:16 +00:00
},
2018-01-13 02:01:27 +00:00
2017-02-11 06:50:16 +00:00
output: {
filename: path.join('_output', uiFolder, '[name].js'),
2018-01-13 02:01:27 +00:00
sourceMapFilename: '[file].map'
2017-02-11 06:50:16 +00:00
},
2018-01-13 02:01:27 +00:00
plugins,
2017-02-11 06:50:16 +00:00
resolveLoader: {
2018-01-13 02:01:27 +00:00
modules: [
2017-02-11 06:50:16 +00:00
'node_modules',
2018-01-13 02:01:27 +00:00
'frontend/gulp/webpack/'
2017-02-11 06:50:16 +00:00
]
},
2018-01-13 02:01:27 +00:00
2017-02-11 06:50:16 +00:00
module: {
2018-01-13 02:01:27 +00:00
rules: [
2017-02-11 06:50:16 +00:00
{
test: /\.js?$/,
exclude: /(node_modules|JsLibraries)/,
2018-01-13 02:01:27 +00:00
loader: 'babel-loader',
2017-02-11 06:50:16 +00:00
query: {
plugins: ['transform-class-properties'],
presets: ['es2015', 'decorators-legacy', 'react', 'stage-2'],
env: {
development: {
plugins: ['transform-react-jsx-source']
}
}
}
},
// CSS Modules
{
test: /\.css$/,
exclude: /(node_modules|globals.css)/,
2018-01-13 02:01:27 +00:00
use: extractCSSPlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-variables-loader',
options: {
cssVarsFiles
}
},
{
loader: 'css-loader',
options: {
modules: true,
importLoaders: 1,
localIdentName: '[name]-[local]-[hash:base64:5]',
sourceMap: true
}
},
{
loader: 'postcss-loader',
options: {
config: {
ctx: {
cssVarsFiles
},
path: 'frontend/postcss.config.js'
}
}
}
]
})
2017-02-11 06:50:16 +00:00
},
// Global styles
{
test: /\.css$/,
include: /(node_modules|globals.css)/,
2018-01-13 02:01:27 +00:00
use: [
'style-loader',
{
loader: 'css-loader'
}
]
2017-02-11 06:50:16 +00:00
},
// Fonts
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
2018-01-13 02:01:27 +00:00
use: [
{
loader: 'url-loader',
options: {
limit: 10240,
mimetype: 'application/font-woff',
emitFile: false,
name: 'Content/Fonts/[name].[ext]'
}
}
]
2017-02-11 06:50:16 +00:00
},
2018-01-13 02:01:27 +00:00
2017-02-11 06:50:16 +00:00
{
test: /\.(ttf|eot|eot?#iefix|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
2018-01-13 02:01:27 +00:00
use: [
{
loader: 'file-loader',
options: {
emitFile: false,
name: 'Content/Fonts/[name].[ext]'
}
}
]
2017-02-11 06:50:16 +00:00
}
]
}
};
gulp.task('webpack', () => {
return gulp.src('index.js')
.pipe(webpackStream(config))
.pipe(gulp.dest(''));
});
gulp.task('webpackWatch', () => {
config.watch = true;
return gulp.src('')
.pipe(webpackStream(config))
.on('error', errorHandler)
.pipe(gulp.dest(''))
.on('error', errorHandler)
.pipe(livereload())
.on('error', errorHandler);
});