@nomiclabs/buidler
Version:
Buidler is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
38 lines (28 loc) • 847 B
text/typescript
import path from "path";
import { loadPluginFile } from "../plugins";
export default function () {
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "clean")
);
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "compile")
);
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "console")
);
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "flatten")
);
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "help")
);
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "run")
);
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "node")
);
loadPluginFile(
path.join(__dirname, "..", "..", "..", "builtin-tasks", "test")
);
}