Skip to content

Instantly share code, notes, and snippets.

@juliankrispel
Created September 28, 2020 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliankrispel/029ac27325488fde614b321972bd6525 to your computer and use it in GitHub Desktop.
Save juliankrispel/029ac27325488fde614b321972bd6525 to your computer and use it in GitHub Desktop.
Simple Webpack for compiling Typescript Lambda deployment packages
const path = require('path');
const { readdirSync } = require('fs');
const exec = require('child_process').execSync;
const dir = 'src'
const entry = readdirSync(dir)
.filter(item => /\.(t|j)s$/.test(item))
.filter(item => !/\.d\.(t|j)s$/.test(item))
.reduce((acc, fileName) => ({
...acc,
[fileName.replace(/\.(t|j)s$/, '')]: `./${dir}/${fileName}`
}), {})
const distFolder = 'dist'
const distPath = path.resolve(process.cwd(), distFolder)
module.exports = {
entry,
mode: 'production',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
modules: ['node_modules'],
extensions: [ '.tsx', '.ts', '.js', '.json' ],
},
target: 'node',
mode: 'production',
plugins: [
{
apply: compiler => {
compiler.hooks.done.tap(
'ZipPlugin',
(a,b,c) => {
Object.keys(entry).forEach(name => {
exec(`zip ${name}.zip -r ${name}.js`, { cwd: distPath })
})
exec(`rm *.js`, { cwd: distPath })
console.info(
'produced deployment packages:\n\n',
Object.keys(entry).map(name => ' 💾 ./' + path.join('./', distFolder, `${name}.zip`)).join('\n\n '),
'\n'
);
});
}
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment