/var/www/greso.tech/server/nsm/node_modules/qrcode-svg
Edit: /var/www/greso.tech/server/nsm/node_modules/qrcode-svg/minify.js (449B)
var fs = require('fs');
var minify = require('minify');
var pkg = require('./package.json');
var src = './lib/qrcode.js';
var dst = './dist/qrcode.min.js';
minify(src)
.then(function(data) {
var comment = "/*! " + pkg.name + " v" + pkg.version + " | " + pkg.homepage + " | MIT license */\n";
var js = comment + data;
fs.writeFileSync(dst, js);
console.log("Done!");
})
.catch(function(error) {
if (error) return console.error(error);
});