Created
September 28, 2020 09:32
-
-
Save juliankrispel/029ac27325488fde614b321972bd6525 to your computer and use it in GitHub Desktop.
Simple Webpack for compiling Typescript Lambda deployment packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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