diff --git a/full.bundle.js b/full.bundle.js new file mode 100644 index 0000000..6b78174 --- /dev/null +++ b/full.bundle.js @@ -0,0 +1,14 @@ +// ulog - the universal logger +// © 2021 by Stijn de Witt +// License: MIT + +// full.bundle.js => full.min.js +// this is the bundled version of ulog, for use as an old-fashioned script-include +// bundlers and node will use ulog.js directly +// the full bundle is basically just ulog, without any lazy loading +// for lazy loading support, use ulog.min.js + +// just making sure both ulog and anylogger are available as globals in the script version +module.exports = self.ulog = self.anylogger = require('./ulog') + +// ....aaand we're done already :) \ No newline at end of file