Adding upstream version 0.1.10+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
157f539082
commit
4d3e0bf859
42 changed files with 10556 additions and 0 deletions
28
webpack.config.js
Normal file
28
webpack.config.js
Normal 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'
|
||||
})
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue