forked from Umkus/lambda-layer-sharp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
55 lines (53 loc) · 1.44 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
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: false,
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'commonjs2',
},
externals: ({ context, request }, callback) => {
if (/.node$/.test(request)) {
const sharpModulePath = path.join(__dirname, 'node_modules/sharp');
const absoluteBinaryPath = path.join(context, request);
const absoluteBundlePath = path.resolve(sharpModulePath, 'index.js');
const relativeToBundleBinaryPath = path.relative(path.dirname(absoluteBundlePath), absoluteBinaryPath);
return callback(null, 'commonjs ' + './' + relativeToBundleBinaryPath);
}
callback();
}
};