1
0
Fork 0

Adding upstream version 0.1.10+dfsg.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-22 16:48:36 +02:00
parent 157f539082
commit 4d3e0bf859
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
42 changed files with 10556 additions and 0 deletions

28
webpack.config.js Normal file
View file

@ -0,0 +1,28 @@
"use strict";
const path = require("path");
const MinifyPlugin = require("babel-minify-webpack-plugin");
const JsDocPlugin = require('jsdoc-webpack-plugin');
module.exports = {
entry: {
zmodem: [ "./src/zmodem_browser.js" ],
"zmodem.devel": [ "./src/zmodem_browser.js" ],
},
output: {
path: path.resolve( __dirname, "dist" ),
filename: "[name].js",
},
plugins: [
new MinifyPlugin(
null,
{
test: /zmodem\.js$/,
}
),
new JsDocPlugin({
conf: './jsdoc.json'
})
]
}