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
125 lines
3.8 KiB
JavaScript
125 lines
3.8 KiB
JavaScript
const webpack = require('webpack');
|
|
const helpers = require('./helpers');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
|
|
resolveLoader: {
|
|
alias: {
|
|
"file-multi-loader": path.resolve(__dirname, "./custom-loaders/file-loader-multi"),
|
|
"license-check": path.resolve(__dirname, "./custom-loaders/license-check")
|
|
}
|
|
},
|
|
|
|
// require those dependencies but don't bundle them
|
|
externals: [
|
|
/^\@angular\//,
|
|
/^rxjs\//,
|
|
'moment',
|
|
'raphael',
|
|
'ng2-charts',
|
|
'alfresco-js-api',
|
|
'ng2-alfresco-core',
|
|
'ng2-alfresco-datatable',
|
|
'ng2-activiti-analytics',
|
|
'ng2-activiti-diagrams',
|
|
'ng2-activiti-form',
|
|
"ng2-activiti-tasklist",
|
|
'ng2-alfresco-documentlist'
|
|
],
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
enforce: 'pre',
|
|
test: /\.js$/,
|
|
loader: 'source-map-loader',
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
|
},
|
|
{
|
|
enforce: 'pre',
|
|
test: /\.ts$/,
|
|
use: 'source-map-loader',
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
|
},
|
|
{
|
|
enforce: 'pre',
|
|
test: /\.ts$/,
|
|
loader: 'tslint-loader',
|
|
options: {
|
|
emitErrors: true,
|
|
configFile: path.resolve(__dirname, './assets/tslint.json')
|
|
},
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
|
},
|
|
{
|
|
test: /\.ts$/,
|
|
use: ['ts-loader', '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/]
|
|
},{
|
|
enforce: 'pre',
|
|
test: /\.ts$/,
|
|
loader: 'license-check',
|
|
options: {
|
|
emitErrors: true,
|
|
licenseFile: path.resolve(__dirname, './assets/license_header.txt')
|
|
},
|
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/, /rendering-queue.services.ts/ ],
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/,
|
|
loader: 'file-multi-loader',
|
|
query: {
|
|
name: '[name].[hash].[ext]',
|
|
outputPath: (url, resourcePath)=> {
|
|
return resourcePath.replace('src', 'bundles') + url;
|
|
},
|
|
publicPath: (url, resourcePath)=> {
|
|
var component = resourcePath.substring(0, resourcePath.indexOf('src'));
|
|
var path = resourcePath.replace(component, '').replace('src', 'bundles');
|
|
return './' + path + url;
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
|
|
resolve: {
|
|
extensions: ['.ts', '.js'],
|
|
symlinks: false,
|
|
modules: [
|
|
'../ng2-components', 'node_modules'
|
|
]
|
|
},
|
|
|
|
plugins: [
|
|
new webpack.NoEmitOnErrorsPlugin(),
|
|
|
|
new webpack.BannerPlugin(fs.readFileSync(path.resolve(__dirname, './assets/license_header_add.txt'), 'utf8')),
|
|
|
|
new webpack.ContextReplacementPlugin(
|
|
/angular(\\|\/)core(\\|\/)@angular/,
|
|
helpers.root('./src'),
|
|
{}
|
|
)
|
|
],
|
|
|
|
devtool: 'cheap-module-source-map',
|
|
|
|
node: {
|
|
fs: 'empty',
|
|
module: false
|
|
}
|
|
};
|