| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 'use strict';
- const merge = require('webpack-merge');
- const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
- const common = require('./webpack.common.js');
- const webpack = require('webpack');
- const path = require('path');
- const ngAnnotatePlugin = require('ng-annotate-webpack-plugin');
- const HtmlWebpackPlugin = require("html-webpack-plugin");
- const ExtractTextPlugin = require("extract-text-webpack-plugin");
- module.exports = merge(common, {
- devtool: "source-map",
- entry: {
- dark: './public/sass/grafana.dark.scss',
- light: './public/sass/grafana.light.scss',
- vendor: require('./dependencies'),
- },
- module: {
- rules: [
- {
- test: /\.tsx?$/,
- enforce: 'pre',
- exclude: /node_modules/,
- use: {
- loader: 'tslint-loader',
- options: {
- emitErrors: true,
- typeCheck: false,
- }
- }
- },
- {
- test: /\.tsx?$/,
- exclude: /node_modules/,
- use: [
- {
- loader: 'awesome-typescript-loader',
- options: {
- errorsAsWarnings: false,
- },
- },
- ]
- },
- require('./sass.rule.js')({
- sourceMap: false, minimize: true, preserveUrl: false
- })
- ]
- },
- devServer: {
- noInfo: true,
- stats: {
- chunks: false,
- },
- },
- plugins: [
- new ExtractTextPlugin({
- filename: 'grafana.[name].css',
- }),
- new ngAnnotatePlugin(),
- new UglifyJSPlugin({
- sourceMap: true,
- }),
- new webpack.DefinePlugin({
- 'process.env': {
- 'NODE_ENV': JSON.stringify('production')
- }
- }),
- new HtmlWebpackPlugin({
- filename: path.resolve(__dirname, '../../public/views/index.html'),
- template: path.resolve(__dirname, '../../public/views/index.template.html'),
- inject: 'body',
- chunks: ['manifest', 'vendor', 'app'],
- }),
- new webpack.optimize.CommonsChunkPlugin({
- names: ['vendor', 'manifest'],
- }),
- function () {
- this.plugin("done", function (stats) {
- if (stats.compilation.errors && stats.compilation.errors.length) {
- console.log(stats.compilation.errors);
- process.exit(1);
- }
- });
- }
- ]
- });
|