Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

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);
}