forked from Umkus/lambda-layer-sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
50 lines (48 loc) · 1.18 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
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
const ZipPlugin = require('zip-webpack-plugin');
const distPath = 'nodejs/node_modules/sharp';
module.exports = {
name: 'layer',
mode: 'production',
stats: 'minimal',
target: 'node',
watch: false,
entry: {
[`${distPath}/index`]: './node_modules/sharp/lib/index',
},
plugins: [
new CopyPlugin({
patterns: [
{
from: 'node_modules/sharp/build',
to: `${distPath}/build`,
},
{
from: 'node_modules/sharp/LICENSE',
to: distPath,
},
{
from: `node_modules/sharp/vendor`,
to: `${distPath}/vendor`,
},
],
}),
new ZipPlugin({
filename: 'sharp-layer.zip',
})
],
optimization: {
// minimize will be enabled in Github Actions
minimize: process.env.NODE_ENV === 'production',
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'commonjs2',
},
externals: {
'./sharp-linux-x64.node': './build/Release/sharp-linux-x64.node',
'./sharp-linux-arm64v8.node': './build/Release/sharp-linux-arm64v8.node',
},
};