1
0
Fork 0

webpack builds oldstyle UMD js, too

This commit is contained in:
boyska 2021-11-19 18:22:21 +01:00
parent 9fc6c6a74b
commit 06fd8807b3
2 changed files with 24 additions and 12 deletions

View file

@ -5,7 +5,7 @@
<body>
Ciao
<script src="libs/ical.min.js"></script>
<script src="radiomanifest.js"></script>
<script src="dist/radiomanifest-oldstyle.bundle.js"></script>
<script src="ui.js"></script>
</body>
</html>

View file

@ -1,15 +1,27 @@
const path = require('path')
module.exports = ['web', 'node'].map(
target => ({
name: target,
mode: 'production',
entry: './radiomanifest.js',
target: [target],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'radiomanifest-' + target + '.bundle.js',
clean: false
const variants = [
{ name: 'web', libtype: 'amd', target: 'web' },
{ name: 'node', libtype: 'amd', target: 'node' },
{ name: 'oldstyle', libtype: 'umd', target: 'web' }
]
module.exports = variants.map(
variant => {
const obj = {
name: variant.name,
mode: 'production',
entry: './radiomanifest.js',
target: [variant.target],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'radiomanifest-' + variant.name + '.bundle.js',
clean: false,
library: {
name: 'radiomanifest',
type: variant.libtype
}
}
}
})
return obj
}
)