Delete old builder

This commit is contained in:
the1812 2019-06-13 22:50:27 +08:00
parent 1bd7b58df2
commit ff28ceb51d

View File

@ -1,17 +0,0 @@
class ProjectBuilder
{
constructor(source, silent = false)
{
this.source = source;
this.silent = silent;
console.info("[Bilibili Evolved] Project builder started.");
console.info(`Working directory: ${process.cwd()}`);
}
}
(() =>
{
new ProjectBuilder();
})();