-
Notifications
You must be signed in to change notification settings - Fork 15
/
webpack.config.js
36 lines (34 loc) · 960 Bytes
/
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
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const yaml = require('node-yaml');
const nodeExternals = require('webpack-node-externals');
function getFunctions() {
const serverlessYml = yaml.readSync('serverless.yml');
const webPackFunctions = {};
const functionNames = Object.keys(serverlessYml.functions || {});
functionNames.forEach((name) => {
const handlerFile = serverlessYml.functions[name].handler.replace(/.[^.]*$/, '');
webPackFunctions[handlerFile] = `./${handlerFile}.js`;
});
return webPackFunctions;
}
module.exports = {
entry: getFunctions(),
target: 'node',
module: {
rules: [
{ test: /\.json/, loader: 'json-loader' },
],
},
plugins: [
new CopyWebpackPlugin([
{ from: '.env' },
]),
],
output: {
libraryTarget: 'commonjs',
path: path.join(__dirname, '.webpack'),
filename: '[name].js',
},
externals: [nodeExternals()],
};