2016-10-18 18:46:48 -04:00
|
|
|
'use strict';
|
|
|
|
|
2017-01-19 04:41:38 -05:00
|
|
|
var fs = require('fs');
|
2016-10-18 18:46:48 -04:00
|
|
|
var path = require('path');
|
|
|
|
var webpack = require('webpack');
|
|
|
|
var StatsPlugin = require('stats-webpack-plugin');
|
2017-02-02 17:30:59 -05:00
|
|
|
var CompressionPlugin = require('compression-webpack-plugin');
|
2016-10-18 18:46:48 -04:00
|
|
|
|
2017-02-01 14:05:52 -05:00
|
|
|
var ROOT_PATH = path.resolve(__dirname, '..');
|
2016-10-18 18:46:48 -04:00
|
|
|
var IS_PRODUCTION = process.env.NODE_ENV === 'production';
|
2016-10-19 16:56:42 -04:00
|
|
|
var IS_DEV_SERVER = process.argv[1].indexOf('webpack-dev-server') !== -1;
|
2017-02-01 14:05:52 -05:00
|
|
|
var DEV_SERVER_PORT = parseInt(process.env.DEV_SERVER_PORT, 10) || 3808;
|
2016-10-18 18:46:48 -04:00
|
|
|
|
|
|
|
var config = {
|
2016-11-03 17:38:54 -04:00
|
|
|
context: path.join(ROOT_PATH, 'app/assets/javascripts'),
|
2016-10-18 18:46:48 -04:00
|
|
|
entry: {
|
2016-11-03 17:38:54 -04:00
|
|
|
application: './application.js',
|
|
|
|
blob_edit: './blob_edit/blob_edit_bundle.js',
|
|
|
|
boards: './boards/boards_bundle.js',
|
|
|
|
boards_test: './boards/test_utils/simulate_drag.js',
|
|
|
|
cycle_analytics: './cycle_analytics/cycle_analytics_bundle.js',
|
2017-02-05 15:44:01 -05:00
|
|
|
commit_pipelines: './commit/pipelines/pipelines_bundle.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
diff_notes: './diff_notes/diff_notes_bundle.js',
|
|
|
|
environments: './environments/environments_bundle.js',
|
2017-01-13 10:30:40 -05:00
|
|
|
filtered_search: './filtered_search/filtered_search_bundle.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
graphs: './graphs/graphs_bundle.js',
|
2017-01-18 23:23:53 -05:00
|
|
|
issuable: './issuable/issuable_bundle.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
merge_conflicts: './merge_conflicts/merge_conflicts_bundle.js',
|
|
|
|
merge_request_widget: './merge_request_widget/ci_bundle.js',
|
|
|
|
network: './network/network_bundle.js',
|
|
|
|
profile: './profile/profile_bundle.js',
|
|
|
|
protected_branches: './protected_branches/protected_branches_bundle.js',
|
|
|
|
snippet: './snippet/snippet_bundle.js',
|
|
|
|
terminal: './terminal/terminal_bundle.js',
|
|
|
|
users: './users/users_bundle.js',
|
|
|
|
lib_chart: './lib/chart.js',
|
2017-01-13 10:30:40 -05:00
|
|
|
lib_d3: './lib/d3.js',
|
2017-01-18 23:23:53 -05:00
|
|
|
lib_vue: './lib/vue_resource.js',
|
2017-01-13 11:27:19 -05:00
|
|
|
vue_pipelines: './vue_pipelines_index/index.js',
|
2016-10-18 18:46:48 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
output: {
|
|
|
|
path: path.join(ROOT_PATH, 'public/assets/webpack'),
|
|
|
|
publicPath: '/assets/webpack/',
|
|
|
|
filename: IS_PRODUCTION ? '[name]-[chunkhash].js' : '[name].js'
|
|
|
|
},
|
|
|
|
|
2017-01-07 02:36:19 -05:00
|
|
|
devtool: 'inline-source-map',
|
2016-10-19 16:47:49 -04:00
|
|
|
|
2016-10-19 15:29:43 -04:00
|
|
|
module: {
|
|
|
|
loaders: [
|
|
|
|
{
|
2017-02-06 01:24:23 -05:00
|
|
|
test: /\.(js|es6)$/,
|
|
|
|
exclude: /(node_modules|vendor\/assets)/,
|
2016-11-04 19:12:00 -04:00
|
|
|
loader: 'babel-loader',
|
|
|
|
query: {
|
2017-02-02 17:30:59 -05:00
|
|
|
// 'use strict' was broken in sprockets-es6 due to sprockets concatination method.
|
2016-11-04 19:12:00 -04:00
|
|
|
// many es5 strict errors which were never caught ended up in our es6 assets as a result.
|
|
|
|
// this hack is necessary until they can be fixed.
|
2017-02-02 17:30:59 -05:00
|
|
|
blacklist: ['useStrict']
|
2016-11-04 19:12:00 -04:00
|
|
|
}
|
2016-10-28 04:22:02 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(js|es6)$/,
|
|
|
|
loader: 'imports-loader',
|
2017-01-06 16:44:03 -05:00
|
|
|
query: 'this=>window'
|
2016-10-28 04:22:02 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.json$/,
|
|
|
|
loader: 'json-loader'
|
2016-10-19 15:29:43 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2016-10-18 18:46:48 -04:00
|
|
|
plugins: [
|
|
|
|
// manifest filename must match config.webpack.manifest_filename
|
|
|
|
// webpack-rails only needs assetsByChunkName to function properly
|
|
|
|
new StatsPlugin('manifest.json', {
|
|
|
|
chunkModules: false,
|
|
|
|
source: false,
|
|
|
|
chunks: false,
|
|
|
|
modules: false,
|
|
|
|
assets: true
|
2017-01-13 11:11:35 -05:00
|
|
|
}),
|
|
|
|
new CompressionPlugin({
|
|
|
|
asset: '[path].gz[query]',
|
|
|
|
}),
|
2016-10-19 15:29:43 -04:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2016-10-28 04:22:02 -04:00
|
|
|
extensions: ['', '.js', '.es6', '.js.es6'],
|
|
|
|
alias: {
|
2017-01-09 18:23:54 -05:00
|
|
|
'~': path.join(ROOT_PATH, 'app/assets/javascripts'),
|
2016-10-28 04:22:02 -04:00
|
|
|
'bootstrap/js': 'bootstrap-sass/assets/javascripts/bootstrap',
|
|
|
|
'emoji-aliases$': path.join(ROOT_PATH, 'fixtures/emojis/aliases.json'),
|
|
|
|
'vendor': path.join(ROOT_PATH, 'vendor/assets/javascripts'),
|
|
|
|
'vue$': 'vue/dist/vue.js',
|
|
|
|
'vue-resource$': 'vue-resource/dist/vue-resource.js'
|
2017-01-09 18:23:54 -05:00
|
|
|
}
|
2016-10-19 15:29:43 -04:00
|
|
|
}
|
2016-10-18 18:46:48 -04:00
|
|
|
}
|
|
|
|
|
2016-10-19 16:47:49 -04:00
|
|
|
if (IS_PRODUCTION) {
|
2017-01-07 02:36:19 -05:00
|
|
|
config.devtool = 'source-map';
|
2016-10-19 16:47:49 -04:00
|
|
|
config.plugins.push(
|
|
|
|
new webpack.NoErrorsPlugin(),
|
|
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
|
|
compress: { warnings: false }
|
|
|
|
}),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': { NODE_ENV: JSON.stringify('production') }
|
|
|
|
}),
|
|
|
|
new webpack.optimize.DedupePlugin(),
|
|
|
|
new webpack.optimize.OccurrenceOrderPlugin()
|
|
|
|
);
|
2016-10-19 16:56:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (IS_DEV_SERVER) {
|
2016-10-18 18:46:48 -04:00
|
|
|
config.devServer = {
|
|
|
|
port: DEV_SERVER_PORT,
|
|
|
|
headers: { 'Access-Control-Allow-Origin': '*' }
|
|
|
|
};
|
|
|
|
config.output.publicPath = '//localhost:' + DEV_SERVER_PORT + config.output.publicPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = config;
|