From 855b6f841942ee1ab28cb325ae72e2589b243f9d Mon Sep 17 00:00:00 2001 From: Stijn de Witt Date: Thu, 4 Feb 2021 04:07:41 +0100 Subject: [PATCH] File was missing from commit --- full.bundle.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 full.bundle.js 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