@dappnode/dappnodesdk
Version:
dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain
11 lines • 521 B
JavaScript
import { gaBuild } from "./build/index.js";
import { gaBumpUpstream } from "./bumpUpstream/index.js";
export const githubActions = {
command: "github-action",
describe: "Github actions tooling to be run in CI. Uses a specific set of options for internal DAppNode use. Caution: options may change without notice.",
builder: yargs => yargs.command(gaBuild).command(gaBumpUpstream).demandCommand(1),
handler: async () => {
throw Error("Requires 1 command");
}
};
//# sourceMappingURL=index.js.map