diff --git a/config/paths.js b/config/paths.js index 80868ff..20ea194 100644 --- a/config/paths.js +++ b/config/paths.js @@ -59,6 +59,7 @@ module.exports = { "commands/start": resolveApp("src/v1/cli/commands/start.js"), apiApp: resolveApp("src/v1/app/apiApp.js"), sourcecred: resolveApp("src/v1/cli/sourcecred.js"), + sourcecredV3: resolveApp("src/v3/cli/sourcecred.js"), fetchAndPrintGithubRepo: resolveApp( "src/v1/plugins/github/bin/fetchAndPrintGithubRepo.js" ), diff --git a/src/v3/cli/sourcecred.js b/src/v3/cli/sourcecred.js new file mode 100644 index 0000000..d8b001c --- /dev/null +++ b/src/v3/cli/sourcecred.js @@ -0,0 +1,5 @@ +// @flow +require("../../tools/entry"); +require("@oclif/command") + .run() + .catch(require("@oclif/errors/handle"));