mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* fix sourcemap fix relative path and pre publish build change travis wait all test run build and remove unused cpx * global test task modify publish script to accept options * appveyor run * different approach single test run * make it work the analytics test modify start demo shell script to use a different registry * sourcemap demo shell working * update readme and add install after any clean add registry option in start.sh script add develop and normal mode in demo shell add -d option in start.sh to point to the local components add -c option in build script to point to the local components
86 lines
2.4 KiB
JavaScript
86 lines
2.4 KiB
JavaScript
const webpack = require('webpack');
|
|
const helpers = require('./helpers');
|
|
|
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
|
|
|
module.exports = {
|
|
|
|
devtool: 'inline-source-map',
|
|
|
|
resolve: {
|
|
extensions: ['.ts', '.js'],
|
|
symlinks: false,
|
|
modules: [helpers.root('../ng2-components'), helpers.root('node_modules')]
|
|
},
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
enforce: 'pre',
|
|
test: /\.js$/,
|
|
loader: 'source-map-loader',
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
|
},
|
|
{
|
|
test: /\.ts$/,
|
|
loaders: ['ts-loader?' + JSON.stringify({ transpileOnly: true}), 'angular2-template-loader'],
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
|
},
|
|
{
|
|
test: /\.html$/,
|
|
loader: 'html-loader',
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
loader: ['to-string-loader', 'css-loader'],
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico|pdf)$/,
|
|
loader: 'file-loader',
|
|
query: {
|
|
name: '[path][name].[ext]',
|
|
outputPath: (url)=> {
|
|
return url.replace('src', 'dist');
|
|
}
|
|
}
|
|
},
|
|
{
|
|
enforce: 'post',
|
|
test: /\.ts$/,
|
|
loader: 'istanbul-instrumenter-loader',
|
|
exclude: [
|
|
/node_modules/,
|
|
/test/
|
|
]
|
|
}
|
|
]
|
|
},
|
|
|
|
plugins: [
|
|
new webpack.NoEmitOnErrorsPlugin(),
|
|
|
|
new webpack.ContextReplacementPlugin(
|
|
/angular(\\|\/)core(\\|\/)@angular/,
|
|
helpers.root('./src'),
|
|
{}
|
|
),
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
'ENV': JSON.stringify(ENV)
|
|
}
|
|
}),
|
|
new webpack.LoaderOptionsPlugin({
|
|
htmlLoader: {
|
|
minimize: false // workaround for ng2
|
|
}
|
|
})
|
|
],
|
|
|
|
node: {
|
|
fs: 'empty',
|
|
module: false
|
|
}
|
|
};
|