Removed legacy script; tsconfig cleanup

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 7 years ago
parent f3930a7894
commit b1340eab1f
  1. 36
      BuildServer/compress-old-reports.ts
  2. 4
      BuildServer/tsconfig.json

@ -1,36 +0,0 @@
"use strict";
const fs = require("fs");
const path = require("path");
const zlib = require("zlib");
const glob = require("glob");
const async = require("async");
const settings = require("./settings");
const streamsNumber = 100;
glob("**\\report.json", { "cwd": settings.releasepath }, (globErr, files) => {
if (globErr) {
return console.log(globErr);
}
return async.parallelLimit(files.map((file) => (callback) => {
const originalPath = path.join(settings.releasepath, file);
const newPath = `${originalPath}.gz`;
console.log(file);
fs.createReadStream(originalPath)
.pipe(zlib.createGzip())
.pipe(fs.createWriteStream(newPath))
.on("error", callback)
.on("finish", () => {
fs.unlink(originalPath, callback);
});
}), streamsNumber, (err) => {
if (err) {
console.log(err);
}
console.log("Done");
});
});

@ -9,9 +9,7 @@
]
},
"include": [
"app.ts",
"global.d.ts",
"settings.ts",
"*.ts",
"lib/**/*.ts",
"routes/**/*.ts"
],

Loading…
Cancel
Save