@bconnorwhite/bob
Version:
Bob is a toolkit for TypeScript projects
16 lines (15 loc) • 2.44 kB
TypeScript
import buildCommand, { buildAction, build, BuildArgs, buildSourceCommand, buildSourceAction, buildSource, buildTypesCommand, buildTypesAction, buildTypes } from "./build";
import dockerCommand, { dockerBuildCommand, dockerBuildAction, dockerBuild, DockerBuildArgs, dockerUpCommand, dockerUpAction, dockerUp, DockerUpArgs } from "./docker";
import initCommand, { init, initAction, InitArgs, initSourceCommand, initSource, initSourceAction, InitSourceArgs, initPackageJSONCommand, initPackageJSONAction } from "./init";
import watchCommand, { watch, watchAction, watchSourceCommand, watchSourceAction, watchSource, watchTypesCommand, watchTypesAction, watchTypes } from "./watch";
import startCommand, { start, startAction, StartArgs } from "./start";
import devCommand, { dev, devAction, DevArgs } from "./dev";
import commitCommand, { commit, commitAction } from "./commit";
import testCommand, { test, testAction } from "./test";
import prereleaseCommand from "./prerelease";
import releaseCommand from "./release";
import publishCommand from "./publish";
import lintCommand, { lint, lintAction, lintSourceCommand, lintSource, lintSourceAction, lintPackageCommand, lintPackage, lintPackageAction, lintCommitCommand, lintCommitAction, lintCommit, LintCommitArgs } from "./lint";
import listCommand, { list, listAction } from "./list";
import countCommand, { count, countAction } from "./count";
export { buildCommand, build, buildAction, BuildArgs, buildSourceCommand, buildSourceAction, buildSource, buildTypesCommand, buildTypesAction, buildTypes, dockerCommand, dockerBuildCommand, dockerBuildAction, dockerBuild, DockerBuildArgs, dockerUpCommand, dockerUpAction, dockerUp, DockerUpArgs, initCommand, init, initAction, InitArgs, initSourceCommand, initSource, initSourceAction, InitSourceArgs, initPackageJSONCommand, initPackageJSONAction, watchCommand, watch, watchAction, watchSourceCommand, watchSourceAction, watchSource, watchTypesCommand, watchTypesAction, watchTypes, start, startCommand, startAction, StartArgs, dev, devCommand, devAction, DevArgs, commit, commitCommand, commitAction, test, testCommand, testAction, lint, lintCommand, lintAction, lintSourceCommand, lintSource, lintSourceAction, lintPackageCommand, lintPackage, lintPackageAction, lintCommitCommand, lintCommitAction, lintCommit, LintCommitArgs, list, listCommand, listAction, count, countCommand, countAction, prereleaseCommand, releaseCommand, publishCommand };