first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

26
build/node_modules/insert-module-globals/bin/cmd.js generated vendored Executable file
View File

@@ -0,0 +1,26 @@
#!/usr/bin/env node
var insert = require('../');
var through = require('through2');
var concat = require('concat-stream');
var JSONStream = require('JSONStream');
var basedir = process.argv[2] || process.cwd();
process.stdin
.pipe(JSONStream.parse([ true ]))
.pipe(through.obj(write))
.pipe(JSONStream.stringify())
.pipe(process.stdout)
;
function write (row, enc, next) {
var self = this;
var s = insert(row.id, { basedir: basedir });
s.pipe(concat(function (src) {
row.source = src.toString('utf8');
self.push(row);
next();
}));
s.end(row.source);
}