This repository has been archived by the owner on Mar 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
webpack.test.config.js
118 lines (116 loc) · 3.24 KB
/
webpack.test.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var extractLess = new ExtractTextPlugin({
filename: "bundle[chunkHash].css",
disable: false,
allChunks: true
});
var extractCss = new ExtractTextPlugin({
filename: "vendor[chunkHash].css",
disable: false
});
module.exports = {
entry: {
app: './tests/index.js'
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name][chunkHash].js',
library: 'index',
libraryTarget: 'umd'
},
module: {
rules: [{
test: /\.ts$/,
include: [
path.resolve(__dirname, 'index.ts'),
path.resolve(__dirname, 'ane-util.ts'),
path.resolve(__dirname, 'components'),
path.resolve(__dirname, 'tests')
],
loader: 'ts-loader',
options: { appendTsSuffixTo: [/\.md$/] }
}, {
test: /\.less$/,
include: [
path.resolve(__dirname, 'styles'),
path.resolve(__dirname, 'components')
],
use: extractLess.extract({
use: [{
loader: 'css-loader'
}, {
loader: 'less-loader'
}]
})
}, {
test: /\.css$/,
include: [
path.resolve(__dirname, 'node_modules')
],
use: extractCss.extract({
use: [{
loader: 'css-loader'
}]
})
}, {
test: /\.html$/,
include: [
path.resolve(__dirname, 'components')
],
loader: 'raw-loader'
}, {
test: /\.(eot|otf|ttf|woff|woff2|svg)\w*/,
include: [
path.resolve(__dirname, 'node_modules')
],
loader: 'file-loader',
query: {
limit: 1,
name: '[name].[ext]'
}
}, {
test: /\.md$/,
include: [
path.resolve(__dirname, 'components'),
],
use: [
{ loader: 'ane-markdown-loader', options: { highlight: false } }
]
}]
},
resolve: {
mainFields: ['browser', 'main'],
extensions: ['.js', '.ts', '.less', '.md'],
alias: {
ane: path.resolve(__dirname, "index.ts")
}
},
plugins: [
extractLess,
extractCss,
new HtmlWebpackPlugin({
template: 'tests/index.html'
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: function (module) {
return module.context && module.context.indexOf('node_modules') !== -1;
}
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest'
})
],
devServer: {
contentBase: path.join(__dirname, "dist"),
compress: true,
port: 9000,
watchOptions: {
ignored: /node_modules/
}
},
devtool: 'inline-source-map'
};