Update .gitignore, add dist directory
This commit is contained in:
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
import fs from "fs";
|
||||
import path from "path";
|
||||
import { AppData } from "../data/app-data";
|
||||
import grabDBDir from "./grab-db-dir";
|
||||
import grabSortedExports from "./grab-sorted-exports";
|
||||
export default function trimExports({ config }) {
|
||||
const { export_dir } = grabDBDir({ config });
|
||||
const exports = grabSortedExports({ config });
|
||||
const max_exports = config.max_exports || AppData["MaxExports"];
|
||||
for (let i = 0; i < exports.length; i++) {
|
||||
const export_name = exports[i];
|
||||
if (!export_name)
|
||||
continue;
|
||||
if (i > max_exports - 1) {
|
||||
fs.unlinkSync(path.join(export_dir, export_name));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user