@factor/cli
Version:
Learn how to use Factor's CLI tool at [https://factor.dev]
18 lines (12 loc) • 366 B
JavaScript
/**
* @remarks
* This file loads the Typescript transpiler which uses 'ts-node'
* and requires the main CLI script.
*
* The shebang (#!) above runs the node executable. Note that this needs to be cross-env compatible if changed (i.e. windows)
*/
require("./transpile")()
const cli = require("./cli")
cli.execute()
module.exports = cli