Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-07-28 15:07:08 +00:00
parent 5a67cbafe6
commit a40becf6e4
28 changed files with 277 additions and 86 deletions

13
node_modules/md5/webpack.config.js generated vendored Normal file
View file

@ -0,0 +1,13 @@
const {resolve} = require('path');
module.exports = {
entry: [
'./md5.js'
],
output: {
path: resolve('./dist'),
filename: 'md5.min.js',
libraryTarget: "var",
library: "MD5"
}
};