src/services/cli/index.js
const { cliWithName, cli } = require('./cli');
const { cliAnalyzeCommand } = require('./cliAnalyze');
const { cliBuildCommand } = require('./cliBuild');
const { cliCleanCommand } = require('./cliClean');
const { cliCopyProjectFilesCommand } = require('./cliCopyProjectFiles');
const { cliGenerateCommand } = require('./cliGenerate');
const { cliInfoCommand } = require('./cliInfo');
const { cliInspectCommand } = require('./cliInspect');
const { cliRevisionCommand } = require('./cliRevision');
const { cliRunCommand } = require('./cliRun');
const { cliSHAnalyzeCommand } = require('./cliSHAnalyze');
const { cliSHBuildCommand } = require('./cliSHBuild');
const { cliSHCopyCommand } = require('./cliSHCopy');
const { cliSHInspectCommand } = require('./cliSHInspect');
const { cliSHNodeRunCommand } = require('./cliSHNodeRun');
const { cliSHNodeWatchCommand } = require('./cliSHNodeWatch');
const { cliSHRunCommand } = require('./cliSHRun');
const { cliSHTranspileCommand } = require('./cliSHTranspile');
const { cliSHValidateAnalyzeCommand } = require('./cliSHValidateAnalyze');
const { cliSHValidateBuildCommand } = require('./cliSHValidateBuild');
const { cliSHValidateInspectCommand } = require('./cliSHValidateInspect');
const { cliSHValidateRunCommand } = require('./cliSHValidateRun');
const { cliSHValidateWatchCommand } = require('./cliSHValidateWatch');
const { cliSHWatchCommand } = require('./cliSHWatch');
const { cliWatchCommand } = require('./cliWatch');
const cliGenerators = require('./generators');
module.exports = {
cliWithName,
cli,
cliAnalyzeCommand,
cliBuildCommand,
cliCleanCommand,
cliCopyProjectFilesCommand,
cliGenerateCommand,
cliInfoCommand,
cliInspectCommand,
cliRevisionCommand,
cliRunCommand,
cliSHAnalyzeCommand,
cliSHBuildCommand,
cliSHCopyCommand,
cliSHInspectCommand,
cliSHNodeRunCommand,
cliSHNodeWatchCommand,
cliSHRunCommand,
cliSHTranspileCommand,
cliSHValidateAnalyzeCommand,
cliSHValidateBuildCommand,
cliSHValidateInspectCommand,
cliSHValidateRunCommand,
cliGenerators,
cliSHValidateWatchCommand,
cliSHWatchCommand,
cliWatchCommand,
};