diff options
author | Maximilian Krambach <[email protected]> | 2018-07-04 11:38:54 +0000 |
---|---|---|
committer | Maximilian Krambach <[email protected]> | 2018-07-04 11:38:54 +0000 |
commit | 1919fa41b6da4dfd4f69e776caa6e6b1883eb208 (patch) | |
tree | 1650ffd04145a4c4f6246d3cda2557ce2bc5f53c /lang/js/webpack.conf_unittests.js | |
parent | js: add Key lookup (diff) | |
download | gpgme-1919fa41b6da4dfd4f69e776caa6e6b1883eb208.tar.gz gpgme-1919fa41b6da4dfd4f69e776caa6e6b1883eb208.zip |
js: Add jsdoc, update webpack-cli dependency
--
* package.json:
- the old webpack-cli version depended on two packages
with vulnerabilities, set to minimum version 3.0.8 to fix this
(nodesecurity.io/advisories/157, nodesecurity.io/advisories/612)
- added License identifier
* README: Updated documentation
* jsdoc.conf: Added a configuration file for jsdoc
* some minor documentation changes, indentations
Diffstat (limited to '')
-rw-r--r-- | lang/js/webpack.conf_unittests.js | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/lang/js/webpack.conf_unittests.js b/lang/js/webpack.conf_unittests.js index 4b903be6..c3c87f39 100644 --- a/lang/js/webpack.conf_unittests.js +++ b/lang/js/webpack.conf_unittests.js @@ -19,16 +19,18 @@ * * This is the configuration file for building the gpgmejs-Library with webpack */ +/* global require, module, __dirname */ + const path = require('path'); module.exports = { - entry: './unittests.js', - mode: 'production', - output: { - path: path.resolve(__dirname, 'build'), - filename: 'gpgmejs_unittests.bundle.js', - libraryTarget: 'var', - libraryExport: 'default', - library: 'Gpgmejs_test' - } + entry: './unittests.js', + mode: 'production', + output: { + path: path.resolve(__dirname, 'build'), + filename: 'gpgmejs_unittests.bundle.js', + libraryTarget: 'var', + libraryExport: 'default', + library: 'Gpgmejs_test' + } }; |