builderman verion 0.1.0, initial commit/release.

This commit is contained in:
2025-05-19 23:05:15 -04:00
parent 0578647c3f
commit ec0ffccdb2
1281 changed files with 218046 additions and 0 deletions

101
node_modules/minify/bin/minify.js generated vendored Executable file
View File

@@ -0,0 +1,101 @@
#!/usr/bin/env node
'use strict';
const Pack = require('../package');
const Version = Pack.version;
const log = function(...args) {
console.log(...args);
process.stdin.pause();
};
const Argv = process.argv;
const files = Argv.slice(2);
const [In] = files;
log.error = (e) => {
console.error(e);
process.stdin.pause();
};
process.on('uncaughtException', (error) => {
if (error.code !== 'EPIPE')
log(error);
});
minify();
function readStd(callback) {
const {stdin} = process;
let chunks = '';
const read = () => {
const chunk = stdin.read();
if (chunk)
return chunks += chunk;
stdin.removeListener('readable', read);
callback(chunks);
};
stdin.setEncoding('utf8');
stdin.addListener('readable', read);
}
function minify() {
if (!In || /^(-h|--help)$/.test(In))
return help();
if (/^--(js|css|html)$/.test(In))
return readStd(processStream);
if (/^(-v|--version)$/.test(In))
return log('v' + Version);
uglifyFiles(files);
}
async function processStream(chunks) {
const minify = require('..');
const tryToCatch = require('try-to-catch');
if (!chunks || !In)
return;
const name = In.replace('--', '');
const [e, data] = await tryToCatch(minify[name], chunks);
if (e)
return log.error(e);
log(data);
}
function uglifyFiles(files) {
const minify = require('..');
const minifiers = files.map(minify);
Promise.all(minifiers)
.then(logAll)
.catch(log.error);
}
function logAll(array) {
for (const item of array)
log(item);
}
function help() {
const bin = require('../help');
const usage = 'Usage: minify [options]';
console.log(usage);
console.log('Options:');
for (const name of Object.keys(bin)) {
console.log(' %s %s', name, bin[name]);
}
}