123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*eslint-env node*/
- var path = require('path'),
- webpack = require('webpack'),
- ExtractTextPlugin = require('extract-text-webpack-plugin');
- var staticPrefix = 'src/sentry/static/sentry',
- distPath = staticPrefix + '/dist';
- // this is set by setup.py sdist
- if (process.env.SENTRY_STATIC_DIST_PATH) {
- distPath = process.env.SENTRY_STATIC_DIST_PATH;
- }
- var babelQuery = {
- plugins: [],
- extra: {}
- };
- // only extract po files if we need to
- if (process.env.SENTRY_EXTRACT_TRANSLATIONS === '1') {
- babelQuery.plugins.push('babel-gettext-extractor');
- babelQuery.extra.gettext = {
- 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 config = {
- context: path.join(__dirname, staticPrefix),
- entry: {
- // js
- 'app': 'app',
- 'translations': [
- 'app/translations'
- ],
- 'vendor': [
- 'babel-core/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-document-title',
- 'react-router',
- 'react-bootstrap',
- 'reflux',
- 'select2',
- 'flot/jquery.flot',
- 'flot/jquery.flot.stack',
- 'flot/jquery.flot.time',
- 'flot-tooltip/jquery.flot.tooltip',
- 'vendor/simple-slider/simple-slider'
- ],
- // css
- // NOTE: this will also create an empty 'sentry.js' file
- // TODO: figure out how to not generate this
- 'sentry': 'less/sentry.less'
- },
- module: {
- loaders: [
- {
- test: /\.jsx?$/,
- loader: 'babel-loader',
- include: path.join(__dirname, staticPrefix),
- exclude: /(vendor|node_modules)/,
- query: babelQuery
- },
- {
- test: /\.po$/,
- loader: 'po-catalog-loader',
- query: {
- referenceExtensions: ['.js', '.jsx'],
- domain: 'sentry'
- }
- },
- {
- test: /\.json$/,
- loader: 'json-loader'
- },
- {
- test: /\.less$/,
- include: path.join(__dirname, staticPrefix),
- loader: ExtractTextPlugin.extract('style-loader', 'css-loader!less-loader')
- },
- {
- test: /\.(woff|woff2|ttf|eot|svg|png|gif|ico|jpg)($|\?)/,
- loader: 'file-loader?name=' + '[name].[ext]'
- }
- ]
- },
- plugins: [
- new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js'),
- new webpack.optimize.DedupePlugin(),
- new webpack.ProvidePlugin({
- $: 'jquery',
- jQuery: 'jquery',
- 'window.jQuery': 'jquery',
- 'root.jQuery': 'jquery',
- Raven: 'raven-js'
- }),
- new ExtractTextPlugin('[name].css')
- ],
- resolve: {
- alias: {
- 'flot': path.join(__dirname, staticPrefix, 'vendor', 'jquery-flot'),
- 'flot-tooltip': path.join(__dirname, staticPrefix, 'vendor', 'jquery-flot-tooltip')
- },
- modulesDirectories: [path.join(__dirname, staticPrefix), 'node_modules'],
- extensions: ['', '.jsx', '.js', '.json']
- },
- output: {
- path: distPath,
- filename: '[name].js',
- libraryTarget: 'var',
- library: 'exports',
- sourceMapFilename: '[name].js.map',
- },
- devtool: 'source-map'
- };
- module.exports = config;
|