123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- /*eslint-env node*/
- /*eslint no-var:0*/
- var path = require('path'),
- fs = require('fs'),
- webpack = require('webpack'),
- ExtractTextPlugin = require('extract-text-webpack-plugin'),
- LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
- var staticPrefix = 'src/sentry/static/sentry',
- distPath = path.join(__dirname, staticPrefix, 'dist');
- // this is set by setup.py sdist
- if (process.env.SENTRY_STATIC_DIST_PATH) {
- distPath = process.env.SENTRY_STATIC_DIST_PATH;
- }
- var IS_PRODUCTION = process.env.NODE_ENV === 'production';
- var IS_TEST = process.env.NODE_ENV === 'TEST' || process.env.TEST_SUITE;
- var REFRESH = process.env.WEBPACK_LIVERELOAD === '1';
- var babelConfig = JSON.parse(fs.readFileSync(path.join(__dirname, '.babelrc')));
- babelConfig.cacheDirectory = true;
- // only extract po files if we need to
- if (process.env.SENTRY_EXTRACT_TRANSLATIONS === '1') {
- babelConfig.plugins.push([
- 'babel-gettext-extractor',
- {
- fileName: 'build/javascript.po',
- baseDirectory: path.join(__dirname, 'src/sentry'),
- functionNames: {
- gettext: ['msgid'],
- ngettext: ['msgid', 'msgid_plural', 'count'],
- gettextComponentTemplate: ['msgid'],
- t: ['msgid'],
- tn: ['msgid', 'msgid_plural', 'count'],
- tct: ['msgid']
- }
- }
- ]);
- }
- var appEntry = {
- app: 'app',
- vendor: [
- 'babel-polyfill',
- 'bootstrap/js/dropdown',
- 'bootstrap/js/tab',
- 'bootstrap/js/tooltip',
- 'bootstrap/js/alert',
- 'crypto-js/md5',
- 'jed',
- 'jquery',
- 'marked',
- 'moment',
- 'moment-timezone',
- 'raven-js',
- 'react',
- 'react-dom',
- 'react-dom/server',
- 'react-document-title',
- 'react-router',
- 'react-bootstrap/lib/Modal',
- 'react-sparklines',
- 'reflux',
- 'select2',
- 'vendor/simple-slider/simple-slider',
- 'ios-device-list'
- ]
- };
- // dynamically iterate over locale files and add to `entry` appConfig
- var localeCatalogPath = path.join(__dirname, 'src', 'sentry', 'locale', 'catalogs.json');
- var localeCatalog = JSON.parse(fs.readFileSync(localeCatalogPath, 'utf8'));
- var localeEntries = [];
- localeCatalog.supported_locales.forEach(function(locale) {
- if (locale === 'en') return;
- // Django locale names are "zh_CN", moment's are "zh-cn"
- var normalizedLocale = locale.toLowerCase().replace('_', '-');
- appEntry['locale/' + normalizedLocale] = [
- 'moment/locale/' + normalizedLocale,
- 'sentry-locale/' + locale + '/LC_MESSAGES/django.po' // relative to static/sentry
- ];
- localeEntries.push('locale/' + normalizedLocale);
- });
- /**
- * Main Webpack config for Sentry React SPA.
- */
- var appConfig = {
- entry: appEntry,
- context: path.join(__dirname, staticPrefix),
- module: {
- rules: [
- {
- test: /\.jsx?$/,
- loader: 'babel-loader',
- include: path.join(__dirname, staticPrefix),
- exclude: /(vendor|node_modules|dist)/,
- query: babelConfig
- },
- {
- test: /\.po$/,
- loader: 'po-catalog-loader',
- query: {
- referenceExtensions: ['.js', '.jsx'],
- domain: 'sentry'
- }
- },
- {
- test: /\.json$/,
- loader: 'json-loader'
- },
- // loader for dynamic styles imported into components (embedded as js)
- {
- test: /\.less$/,
- use: [
- {
- loader: 'style-loader'
- },
- {
- loader: 'css-loader' + (IS_PRODUCTION ? '?minimize=true' : '')
- },
- {
- loader: 'less-loader'
- }
- ]
- },
- {
- test: /\.(woff|woff2|ttf|eot|svg|png|gif|ico|jpg)($|\?)/,
- loader: 'file-loader?name=' + '[name].[ext]'
- }
- ],
- noParse: [
- // don't parse known, pre-built javascript files (improves webpack perf)
- /dist\/jquery\.js/,
- /jed\/jed\.js/,
- /marked\/lib\/marked\.js/
- ]
- },
- plugins: [
- new LodashModuleReplacementPlugin({
- collections: true,
- currying: true, // these are enabled to support lodash/fp/ features
- flattening: true // used by a dependency of react-mentions
- }),
- new webpack.optimize.CommonsChunkPlugin({
- names: localeEntries.concat(['vendor']) // 'vendor' must be last entry
- }),
- new webpack.ProvidePlugin({
- $: 'jquery',
- jQuery: 'jquery',
- 'window.jQuery': 'jquery',
- 'root.jQuery': 'jquery',
- Raven: 'raven-js'
- }),
- new ExtractTextPlugin('[name].css'),
- new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/), // ignore moment.js locale files
- new webpack.DefinePlugin({
- 'process.env': {
- NODE_ENV: JSON.stringify(process.env.NODE_ENV)
- }
- }),
- // restrict translation files pulled into dist/app.js to only those specified
- // in locale/catalogs.json
- new webpack.ContextReplacementPlugin(
- /locale$/,
- path.join(__dirname, 'src', 'sentry', 'locale', path.sep),
- true,
- new RegExp('(' + localeCatalog.supported_locales.join('|') + ')\/.*\\.po$')
- )
- ],
- resolve: {
- alias: {
- 'sentry-locale': path.join(__dirname, 'src', 'sentry', 'locale'),
- 'integration-docs-platforms': IS_TEST
- ? path.join(__dirname, 'tests/fixtures/_platforms.json')
- : path.join(__dirname, 'src/sentry/integration-docs/_platforms.json')
- },
- modules: [path.join(__dirname, staticPrefix), 'node_modules'],
- extensions: ['.less', '.jsx', '.js', '.json']
- },
- output: {
- path: distPath,
- filename: '[name].js',
- libraryTarget: 'var',
- library: 'exports',
- sourceMapFilename: '[name].js.map'
- },
- devtool: IS_PRODUCTION ? '#source-map' : '#cheap-source-map'
- };
- if (!IS_PRODUCTION && REFRESH) {
- appConfig.plugins.push(
- new (require('webpack-livereload-plugin'))({appendScriptTag: true})
- );
- }
- var minificationPlugins = [
- // This compression-webpack-plugin generates pre-compressed files
- // ending in .gz, to be picked up and served by our internal static media
- // server as well as nginx when paired with the gzip_static module.
- new (require('compression-webpack-plugin'))({
- algorithm: function(buffer, options, callback) {
- require('zlib').gzip(buffer, callback);
- },
- regExp: /\.(js|map|css|svg|html|txt|ico|eot|ttf)$/
- }),
- // Disable annoying UglifyJS warnings that pollute Travis log output
- // NOTE: This breaks -p in webpack 2. Must call webpack w/ NODE_ENV=production for minification.
- new webpack.optimize.UglifyJsPlugin({
- compress: {
- warnings: false
- },
- // https://github.com/webpack/webpack/blob/951a7603d279c93c936e4b8b801a355dc3e26292/bin/convert-argv.js#L442
- sourceMap: appConfig.devtool &&
- (appConfig.devtool.indexOf('sourcemap') >= 0 ||
- appConfig.devtool.indexOf('source-map') >= 0)
- })
- ];
- if (IS_PRODUCTION) {
- // NOTE: can't do plugins.push(Array) because webpack/webpack#2217
- minificationPlugins.forEach(function(plugin) {
- appConfig.plugins.push(plugin);
- });
- }
- /**
- * Legacy CSS Webpack appConfig for Django-powered views.
- * This generates a single "sentry.css" file that imports ALL component styles
- * for use on Django-powered pages.
- */
- var legacyCssConfig = {
- entry: {
- sentry: 'less/sentry.less'
- },
- context: path.join(__dirname, staticPrefix),
- output: {
- path: distPath,
- filename: '[name].css'
- },
- plugins: [new ExtractTextPlugin('[name].css')],
- resolve: {
- extensions: ['.less'],
- modules: [path.join(__dirname, staticPrefix), 'node_modules']
- },
- module: {
- rules: [
- {
- test: /\.less$/,
- include: path.join(__dirname, staticPrefix),
- loader: ExtractTextPlugin.extract({
- fallbackLoader: 'style-loader?sourceMap=false',
- loader: 'css-loader' + (IS_PRODUCTION ? '?minimize=true' : '') + '!less-loader'
- })
- },
- {
- test: /\.(woff|woff2|ttf|eot|svg|png|gif|ico|jpg)($|\?)/,
- loader: 'file-loader?name=' + '[name].[ext]'
- }
- ]
- }
- };
- if (IS_PRODUCTION) {
- // NOTE: can't do plugins.push(Array) because webpack/webpack#2217
- minificationPlugins.forEach(function(plugin) {
- legacyCssConfig.plugins.push(plugin);
- });
- }
- module.exports = [appConfig, legacyCssConfig];
|