123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /*
- * Password Management Servlets (PWM)
- * http://www.pwm-project.org
- *
- * Copyright (c) 2006-2009 Novell, Inc.
- * Copyright (c) 2009-2018 The PWM Project
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- var HtmlWebpackPlugin = require('html-webpack-plugin');
- var autoPrefixer = require('autoprefixer');
- var path = require('path');
- var webpack = require('webpack');
- var outDir = path.resolve(__dirname, 'dist');
- module.exports = {
- devServer: {
- contentBase: outDir,
- // outputPath: outDir,
- port: 4000,
- historyApiFallback: true
- },
- // Externals copied to /dist via CopyWebpackPlugin
- externals:
- {
- 'angular': true,
- // Wrapped in window because of hyphens
- 'angular-ui-router': 'window["angular-ui-router"]',
- 'angular-translate': 'window["angular-translate"]'
- },
- module: {
- rules: [
- {
- test: /\.ts$/,
- enforce: 'pre',
- loader: 'tslint-loader'
- },
- {
- test: /\.ts$/,
- loader: 'ts-loader',
- exclude: /node_modules/
- },
- {
- test: /index\.html$/,
- loader: 'html-loader',
- exclude: /node_modules/
- },
- {
- test: /\.html$/,
- loader: 'ngtemplate-loader?relativeTo=' + (path.resolve(__dirname, './src')) + '/!html-loader',
- exclude: /index\.html$/
- },
- {
- test: /\.scss$/,
- loaders: [ 'style-loader', 'css-loader', 'sass-loader', {
- loader: 'postcss-loader',
- options: {
- plugins: function () {
- return [autoPrefixer('last 2 versions')]
- }
- }
- }]
- },
- {
- test: /\.(png|jpg|jpeg|gif|svg)$/,
- loaders: [ 'url-loader?limit=25000' ]
- }
- ]
- },
- // [name] is replaced by entry point name
- output: {
- filename: '[name].js',
- path: outDir
- },
- plugins: [
- new HtmlWebpackPlugin({
- chunks: ['peoplesearch.ng'],
- filename: 'peoplesearch.html',
- template: 'index.html',
- // title: 'PeopleSearch Development',
- inject: 'body'
- }),
- new HtmlWebpackPlugin({
- chunks: ['helpdesk.ng'],
- filename: 'helpdesk.html',
- template: 'index.html',
- // title: 'PeopleSearch Development',
- inject: 'body'
- })
- ],
- resolve: {
- extensions: [ '.ts', '.js', '.json' ],
- modules: ['./src', './vendor', 'node_modules']
- }
- };
|