forked from grafana/k6-jslib-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
68 lines (65 loc) · 2.12 KB
/
webpack.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
const path = require('path')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin')
const TerserPlugin = require('terser-webpack-plugin')
module.exports = {
mode: 'production',
entry: {
// Bundle builds: contain the whole set of library clients and features
aws: path.resolve(__dirname, './src/index.ts'),
// jslib.k6.io expects us to expose an `index.js` file
index: path.resolve(__dirname, './src/index.ts'),
// Service clients
s3: path.resolve(__dirname, './src/s3.ts'),
'secrets-manager': path.resolve(__dirname, './src/secrets-manager.ts'),
sqs: path.resolve(__dirname, 'src/sqs.ts'),
ssm: path.resolve(__dirname, 'src/ssm.ts'),
kms: path.resolve(__dirname, 'src/kms.ts'),
kinesis: path.resolve(__dirname, 'src/kinesis.ts'),
'event-bridge': path.resolve(__dirname, 'src/event-bridge.ts'),
lambda: path.resolve(__dirname, 'src/lambda.ts'),
// AWS signature v4
signature: path.resolve(__dirname, 'src/signature.ts'),
},
output: {
path: path.resolve(__dirname, 'build'),
libraryTarget: 'commonjs',
filename: '[name].js',
},
resolve: {
extensions: ['.ts', '.js'],
},
module: {
rules: [
{
test: /\.ts$/,
use: 'babel-loader',
exclude: /node_modules/,
},
],
},
target: 'web',
externals: /^(k6|https?\:\/\/)(\/.*)?/,
// Generate map files for compiled scripts
devtool: 'source-map',
stats: {
colors: true,
},
plugins: [
new CleanWebpackPlugin(),
// Copy assets to the destination folder
// see `src/post-file-test.ts` for an test example using an asset
new CopyPlugin({
patterns: [
{
from: path.resolve(__dirname, 'assets'),
noErrorOnMissing: true,
},
],
}),
],
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
}