Home Manual Reference Source

Variable

Static Public Summary
public

The service provider that once registered on the app container will set an instance of Prompt as the appPrompt service.

public

The service provider that once registered on the app container will set an instance of BabelConfiguration as the babelConfiguration service.

public

The service provider that once registered on the app container will set a reference of BabelHelper as the babelHelper service.

public

The service provider that once registered on the app container will set an instance of BuildCleaner as the buildCleaner service.

public

The service provider that once registered on the app container will set an instance of BuildCopier as the buildCopier service.

public

The service provider that once registered on the app container will set an instance of BuildEngines as the buildEngines service.

public

The service provider that once registered on the app container will set an instance of BuildNodeRunner as the buildNodeRunner service.

public

The service provider that once registered on the app container will set an instance of BuildNodeRunnerProcess as the buildNodeRunnerProcess service.

public

The service provider that once registered on the app container will set an instance of BuildNodeWatcher as the buildNodeWatcher service.

public

The service provider that once registered on the app container will set an instance of BuildNodeWatcherProcess as the buildNodeWatcherProcess service.

public

The service provider that once registered on the app container will set an instance of BuildTranspiler as the buildTranspiler service.

public

The service provider that once registered on the app container will set an instance of BuildTypeScriptHelper as the buildTypeScriptHelper service.

public

The service provider that once registered on the app container will set an instance of BuildVersion as the buildVersion service.

public

The service provider that once registered on the app container will set an instance of Builder as the builder service.

public

The service provider that once registered on the app container will set Cleaner.clean as the cleaner service.

public

The service provider that once registered on the app container will set an instance of CLI as the cli service.

public

The service provider that once registered on the app container will set an instance of CLIAnalyzeCommand as the cliAnalyzeCommand service.

public

The service provider that once registered on the app container will set an instance of CLIBuildCommand as the cliBuildCommand service.

public

The service provider that once registered on the app container will set an instance of CLICleanCommand as the cliCleanCommand service.

public

The service provider that once registered on the app container will set an instance of CLICopyProjectFilesCommand as the cliCopyProjectFilesCommand service.

public

The service provider that once registered on the app container will set an instance of CLIGenerateCommand as the cliGenerateCommand service.

public

The service provider that once registered on the app container will set an instance of CLIInfoCommand as the cliInfoCommand service.

public

The service provider that once registered on the app container will set an instance of CLIInspectCommand as the cliInspectCommand service.

public

The service provider that once registered on the app container will set an instance of CLIRevisionCommand as the cliRevisionCommand service.

public

The service provider that once registered on the app container will set an instance of CLIRunCommand as the cliRunCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHAnalyzeCommand as the cliSHAnalyzeCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHBuildCommand as the cliSHBuildCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHCopyCommand as the cliSHCopyCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHInspectCommand as the cliSHInspectCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHNodeRunCommand as the cliSHNodeRunCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHNodeWatchCommand as the cliSHNodeWatchCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHRunCommand as the cliSHRunCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHTranspileCommand as the cliSHTranspileCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHValidateAnalyzeCommand as the cliSHValidateAnalyzeCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHValidateBuildCommand as the cliSHValidateBuildCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHValidateInspectCommand as the cliSHValidateInspectCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHValidateRunCommand as the cliSHValidateRunCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHValidateWatchCommand as the cliSHValidateWatchCommand service.

public

The service provider that once registered on the app container will set an instance of CLISHWatchCommand as the cliSHWatchCommand service.

public

The service provider that once registered on the app container will set an instance of CLIWatchCommand as the cliWatchCommand service.

public

The service provider that once registered on the app container will set Copier.copy as the copier service.

public

The service provider that once registered on the app container will set an instance of DotEnvUtils as the dotEnvUtils service.

public

The service provider that once registered on the app container will set an instance of Events as the events service.

public

The service provider that once registered on the app container will set an instance of ProjectConfiguration as the projectConfiguration service.

public

The service provider that once registered on the app container will set an instance of ProjectConfigurationFileGenerator as the projectConfigurationFileGenerator service.

public

The service provider that once registered on the app container will set an instance of Prompt as the prompt service.

public

The service provider that once registered on the app container will set an function to get instance of TargetConfiguration as the targetConfiguration service.

public

The service provider that once registered on the app container will set an instance of TargetHTMLGenerator as the targetHTMLGenerator service.

public

The service provider that once registered on the app container will set an instance of Targets as the targets service.

public

The service provider that once registered on the app container will set an instance of TargetsFileRules as the targetsFileRules service.

public

The service provider that once registered on the app container will create an instance of TargetsFinder and set its find method as the targetsFinder service.

public

The service provider that once registered on the app container will create an instance of TargetsHTML and set it as the targetsHTML service.

public

The service provider that once registered on the app container will set an instance of TempFiles as the tempFiles service.

public

The service provider that once registered on the app container will set a reference of Utils as the utils service.

public

The service provider that once registered on the app container will set an instance of VersionUtils as the versionUtils service.

Static Public

public appPrompt: Provider source

import {appPrompt} from 'projext/src/services/common/prompt.js'

The service provider that once registered on the app container will set an instance of Prompt as the appPrompt service. The difference with the regular prompt is that this one uses the packageInfo service in order to retrieve the name of the project and use it as messages prefix.

Example:

// Register it on the container
container.register(appPrompt);
// Getting access to the service instance
const appPrompt = container.get('appPrompt');

public babelConfiguration: Provider source

The service provider that once registered on the app container will set an instance of BabelConfiguration as the babelConfiguration service.

Example:

// Register it on the container
container.register(babelConfiguration);
// Getting access to the service instance
const babelConfiguration = container.get('babelConfiguration');

public babelHelper: Provider source

import {babelHelper} from 'projext/src/services/common/babelHelper.js'

The service provider that once registered on the app container will set a reference of BabelHelper as the babelHelper service.

Example:

// Register it on the container
container.register(babelHelper);
// Getting access to the service reference
const babelHelper = container.get('babelHelper');

public buildCleaner: Provider source

The service provider that once registered on the app container will set an instance of BuildCleaner as the buildCleaner service.

Example:

// Register it on the container
container.register(buildCleaner);
// Getting access to the service instance
const buildCleaner = container.get('buildCleaner');

public buildCopier: Provider source

The service provider that once registered on the app container will set an instance of BuildCopier as the buildCopier service.

Example:

// Register it on the container
container.register(buildCopier);
// Getting access to the service instance
const buildCopier = container.get('buildCopier');

public buildEngines: Provider source

The service provider that once registered on the app container will set an instance of BuildEngines as the buildEngines service.

Example:

// Register it on the container
container.register(buildEngines);
// Getting access to the service instance
const buildEngines = container.get('buildEngines');

public buildNodeRunner: Provider source

import {buildNodeRunner} from 'projext/src/services/building/buildNodeRunner.js'

The service provider that once registered on the app container will set an instance of BuildNodeRunner as the buildNodeRunner service.

Example:

// Register it on the container
container.register(buildNodeRunner);
// Getting access to the service instance
const buildNodeRunner = container.get('buildNodeRunner');

public buildNodeRunnerProcess: Provider source

import {buildNodeRunnerProcess} from 'projext/src/services/building/buildNodeRunnerProcess.js'

The service provider that once registered on the app container will set an instance of BuildNodeRunnerProcess as the buildNodeRunnerProcess service.

Example:

// Register it on the container
container.register(buildNodeRunnerProcess);
// Getting access to the service instance
const buildNodeRunnerProcess = container.get('buildNodeRunnerProcess');

public buildNodeWatcher: Provider source

import {buildNodeWatcher} from 'projext/src/services/building/buildNodeWatcher.js'

The service provider that once registered on the app container will set an instance of BuildNodeWatcher as the buildNodeWatcher service.

Example:

// Register it on the container
container.register(buildNodeWatcher);
// Getting access to the service instance
const buildNodeWatcher = container.get('buildNodeWatcher');

public buildNodeWatcherProcess: Provider source

import {buildNodeWatcherProcess} from 'projext/src/services/building/buildNodeWatcherProcess.js'

The service provider that once registered on the app container will set an instance of BuildNodeWatcherProcess as the buildNodeWatcherProcess service.

Example:

// Register it on the container
container.register(buildNodeWatcherProcess);
// Getting access to the service instance
const buildNodeWatcherProcess = container.get('buildNodeWatcherProcess');

public buildTranspiler: Provider source

import {buildTranspiler} from 'projext/src/services/building/buildTranspiler.js'

The service provider that once registered on the app container will set an instance of BuildTranspiler as the buildTranspiler service.

Example:

// Register it on the container
container.register(buildTranspiler);
// Getting access to the service instance
const buildTranspiler = container.get('buildTranspiler');

public buildTypeScriptHelper: Provider source

import {buildTypeScriptHelper} from 'projext/src/services/building/buildTypeScriptHelper.js'

The service provider that once registered on the app container will set an instance of BuildTypeScriptHelper as the buildTypeScriptHelper service.

Example:

// Register it on the container
container.register(buildTypeScriptHelper);
// Getting access to the service instance
const buildTypeScriptHelper = container.get('buildTypeScriptHelper');

public buildVersion: Provider source

The service provider that once registered on the app container will set an instance of BuildVersion as the buildVersion service.

Example:

// Register it on the container
container.register(buildVersion);
// Getting access to the service instance
const buildVersion = container.get('buildVersion');

public builder: Provider source

The service provider that once registered on the app container will set an instance of Builder as the builder service.

Example:

// Register it on the container
container.register(builder);
// Getting access to the service instance
const builder = container.get('builder');

public cleaner: Provider source

The service provider that once registered on the app container will set Cleaner.clean as the cleaner service.

Example:

// Register it on the container
container.register(cleaner);
// Getting access to the service instance
const cleaner = container.get('cleaner');

public cli: Provider source

The service provider that once registered on the app container will set an instance of CLI as the cli service.

Example:

// Register it on the container
container.register(cli);
// Getting access to the service instance
const cli = container.get('cli');

public cliAnalyzeCommand: Provider source

import {cliAnalyzeCommand} from 'projext/src/services/cli/cliAnalyze.js'

The service provider that once registered on the app container will set an instance of CLIAnalyzeCommand as the cliAnalyzeCommand service.

Example:

// Register it on the container
container.register(cliAnalyzeCommand);
// Getting access to the service instance
const cliAnalyzeCommand = container.get('cliAnalyzeCommand');

public cliBuildCommand: Provider source

import {cliBuildCommand} from 'projext/src/services/cli/cliBuild.js'

The service provider that once registered on the app container will set an instance of CLIBuildCommand as the cliBuildCommand service.

Example:

// Register it on the container
container.register(cliBuildCommand);
// Getting access to the service instance
const cliBuildCommand = container.get('cliBuildCommand');

public cliCleanCommand: Provider source

import {cliCleanCommand} from 'projext/src/services/cli/cliClean.js'

The service provider that once registered on the app container will set an instance of CLICleanCommand as the cliCleanCommand service.

Example:

// Register it on the container
container.register(cliCleanCommand);
// Getting access to the service instance
const cliCleanCommand = container.get('cliCleanCommand');

public cliCopyProjectFilesCommand: Provider source

import {cliCopyProjectFilesCommand} from 'projext/src/services/cli/cliCopyProjectFiles.js'

The service provider that once registered on the app container will set an instance of CLICopyProjectFilesCommand as the cliCopyProjectFilesCommand service.

Example:

// Register it on the container
container.register(cliCopyProjectFilesCommand);
// Getting access to the service instance
const cliCopyProjectFilesCommand = container.get('cliCopyProjectFilesCommand');

public cliGenerateCommand: Provider source

import {cliGenerateCommand} from 'projext/src/services/cli/cliGenerate.js'

The service provider that once registered on the app container will set an instance of CLIGenerateCommand as the cliGenerateCommand service.

Example:

// Register it on the container
container.register(cliGenerateCommand);
// Getting access to the service instance
const cliGenerateCommand = container.get('cliGenerateCommand');

public cliInfoCommand: Provider source

import {cliInfoCommand} from 'projext/src/services/cli/cliInfo.js'

The service provider that once registered on the app container will set an instance of CLIInfoCommand as the cliInfoCommand service.

Example:

// Register it on the container
container.register(cliInfoCommand);
// Getting access to the service instance
const cliInfoCommand = container.get('cliInfoCommand');

public cliInspectCommand: Provider source

import {cliInspectCommand} from 'projext/src/services/cli/cliInspect.js'

The service provider that once registered on the app container will set an instance of CLIInspectCommand as the cliInspectCommand service.

Example:

// Register it on the container
container.register(cliInspectCommand);
// Getting access to the service instance
const cliInspectCommand = container.get('cliInspectCommand');

public cliRevisionCommand: Provider source

import {cliRevisionCommand} from 'projext/src/services/cli/cliRevision.js'

The service provider that once registered on the app container will set an instance of CLIRevisionCommand as the cliRevisionCommand service.

Example:

// Register it on the container
container.register(cliRevisionCommand);
// Getting access to the service instance
const cliRevisionCommand = container.get('cliRevisionCommand');

public cliRunCommand: Provider source

import {cliRunCommand} from 'projext/src/services/cli/cliRun.js'

The service provider that once registered on the app container will set an instance of CLIRunCommand as the cliRunCommand service.

Example:

// Register it on the container
container.register(cliRunCommand);
// Getting access to the service instance
const cliRunCommand = container.get('cliRunCommand');

public cliSHAnalyzeCommand: Provider source

import {cliSHAnalyzeCommand} from 'projext/src/services/cli/cliSHAnalyze.js'

The service provider that once registered on the app container will set an instance of CLISHAnalyzeCommand as the cliSHAnalyzeCommand service.

Example:

// Register it on the container
container.register(cliSHAnalyzeCommand);
// Getting access to the service instance
const cliSHAnalyzeCommand = container.get('cliSHAnalyzeCommand');

public cliSHBuildCommand: Provider source

import {cliSHBuildCommand} from 'projext/src/services/cli/cliSHBuild.js'

The service provider that once registered on the app container will set an instance of CLISHBuildCommand as the cliSHBuildCommand service.

Example:

// Register it on the container
container.register(cliSHBuildCommand);
// Getting access to the service instance
const cliSHBuildCommand = container.get('cliSHBuildCommand');

public cliSHCopyCommand: Provider source

import {cliSHCopyCommand} from 'projext/src/services/cli/cliSHCopy.js'

The service provider that once registered on the app container will set an instance of CLISHCopyCommand as the cliSHCopyCommand service.

Example:

// Register it on the container
container.register(cliSHCopyCommand);
// Getting access to the service instance
const cliSHCopyCommand = container.get('cliSHCopyCommand');

public cliSHInspectCommand: Provider source

import {cliSHInspectCommand} from 'projext/src/services/cli/cliSHInspect.js'

The service provider that once registered on the app container will set an instance of CLISHInspectCommand as the cliSHInspectCommand service.

Example:

// Register it on the container
container.register(cliSHInspectCommand);
// Getting access to the service instance
const cliSHInspectCommand = container.get('cliSHInspectCommand');

public cliSHNodeRunCommand: Provider source

import {cliSHNodeRunCommand} from 'projext/src/services/cli/cliSHNodeRun.js'

The service provider that once registered on the app container will set an instance of CLISHNodeRunCommand as the cliSHNodeRunCommand service.

Example:

// Register it on the container
container.register(cliSHNodeRunCommand);
// Getting access to the service instance
const cliSHNodeRunCommand = container.get('cliSHNodeRunCommand');

public cliSHNodeWatchCommand: Provider source

import {cliSHNodeWatchCommand} from 'projext/src/services/cli/cliSHNodeWatch.js'

The service provider that once registered on the app container will set an instance of CLISHNodeWatchCommand as the cliSHNodeWatchCommand service.

Example:

// Register it on the container
container.register(cliSHNodeWatchCommand);
// Getting access to the service instance
const cliSHNodeWatchCommand = container.get('cliSHNodeWatchCommand');

public cliSHRunCommand: Provider source

import {cliSHRunCommand} from 'projext/src/services/cli/cliSHRun.js'

The service provider that once registered on the app container will set an instance of CLISHRunCommand as the cliSHRunCommand service.

Example:

// Register it on the container
container.register(cliSHRunCommand);
// Getting access to the service instance
const cliSHRunCommand = container.get('cliSHRunCommand');

public cliSHTranspileCommand: Provider source

import {cliSHTranspileCommand} from 'projext/src/services/cli/cliSHTranspile.js'

The service provider that once registered on the app container will set an instance of CLISHTranspileCommand as the cliSHTranspileCommand service.

Example:

// Register it on the container
container.register(cliSHTranspileCommand);
// Getting access to the service instance
const cliSHTranspileCommand = container.get('cliSHTranspileCommand');

public cliSHValidateAnalyzeCommand: Provider source

import {cliSHValidateAnalyzeCommand} from 'projext/src/services/cli/cliSHValidateAnalyze.js'

The service provider that once registered on the app container will set an instance of CLISHValidateAnalyzeCommand as the cliSHValidateAnalyzeCommand service.

Example:

// Register it on the container
container.register(cliSHValidateAnalyzeCommand);
// Getting access to the service instance
const cliSHValidateAnalyzeCommand = container.get('cliSHValidateAnalyzeCommand');

public cliSHValidateBuildCommand: Provider source

import {cliSHValidateBuildCommand} from 'projext/src/services/cli/cliSHValidateBuild.js'

The service provider that once registered on the app container will set an instance of CLISHValidateBuildCommand as the cliSHValidateBuildCommand service.

Example:

// Register it on the container
container.register(cliSHValidateBuildCommand);
// Getting access to the service instance
const cliSHValidateBuildCommand = container.get('cliSHValidateBuildCommand');

public cliSHValidateInspectCommand: Provider source

import {cliSHValidateInspectCommand} from 'projext/src/services/cli/cliSHValidateInspect.js'

The service provider that once registered on the app container will set an instance of CLISHValidateInspectCommand as the cliSHValidateInspectCommand service.

Example:

// Register it on the container
container.register(cliSHValidateInspectCommand);
// Getting access to the service instance
const cliSHValidateInspectCommand = container.get('cliSHValidateInspectCommand');

public cliSHValidateRunCommand: Provider source

import {cliSHValidateRunCommand} from 'projext/src/services/cli/cliSHValidateRun.js'

The service provider that once registered on the app container will set an instance of CLISHValidateRunCommand as the cliSHValidateRunCommand service.

Example:

// Register it on the container
container.register(cliSHValidateRunCommand);
// Getting access to the service instance
const cliSHValidateRunCommand = container.get('cliSHValidateRunCommand');

public cliSHValidateWatchCommand: Provider source

import {cliSHValidateWatchCommand} from 'projext/src/services/cli/cliSHValidateWatch.js'

The service provider that once registered on the app container will set an instance of CLISHValidateWatchCommand as the cliSHValidateWatchCommand service.

Example:

// Register it on the container
container.register(cliSHValidateWatchCommand);
// Getting access to the service instance
const cliSHValidateWatchCommand = container.get('cliSHValidateWatchCommand');

public cliSHWatchCommand: Provider source

import {cliSHWatchCommand} from 'projext/src/services/cli/cliSHWatch.js'

The service provider that once registered on the app container will set an instance of CLISHWatchCommand as the cliSHWatchCommand service.

Example:

// Register it on the container
container.register(cliSHWatchCommand);
// Getting access to the service instance
const cliSHWatchCommand = container.get('cliSHWatchCommand');

public cliWatchCommand: Provider source

import {cliWatchCommand} from 'projext/src/services/cli/cliWatch.js'

The service provider that once registered on the app container will set an instance of CLIWatchCommand as the cliWatchCommand service.

Example:

// Register it on the container
container.register(cliWatchCommand);
// Getting access to the service instance
const cliWatchCommand = container.get('cliWatchCommand');

public copier: Provider source

The service provider that once registered on the app container will set Copier.copy as the copier service.

Example:

// Register it on the container
container.register(copier);
// Getting access to the service instance
const copier = container.get('copier');

public dotEnvUtils: Provider source

import {dotEnvUtils} from 'projext/src/services/common/dotEnvUtils.js'

The service provider that once registered on the app container will set an instance of DotEnvUtils as the dotEnvUtils service.

Example:

// Register it on the container
container.register(dotEnvUtils);
// Getting access to the service instance
const dotEnvUtils = container.get('dotEnvUtils');

public events: Provider source

The service provider that once registered on the app container will set an instance of Events as the events service.

Example:

// Register it on the container
container.register(events);
// Getting access to the service instance
const events = container.get('events');

public projectConfiguration: Provider source

The service provider that once registered on the app container will set an instance of ProjectConfiguration as the projectConfiguration service.

Example:

// Register it on the container
container.register(projectConfiguration);
// Getting access to the service instance
const projectConfiguration = container.get('projectConfiguration');

public projectConfigurationFileGenerator: Provider source

import {projectConfigurationFileGenerator} from 'projext/src/services/cli/generators/projectConfigurationFile.js'

The service provider that once registered on the app container will set an instance of ProjectConfigurationFileGenerator as the projectConfigurationFileGenerator service.

Example:

// Register it on the container
container.register(projectConfigurationFileGenerator);
// Getting access to the service instance
const projectConfigurationFileGenerator = container.get('projectConfigurationFileGenerator');

public prompt: Provider source

The service provider that once registered on the app container will set an instance of Prompt as the prompt service.

Example:

// Register it on the container
container.register(prompt);
// Getting access to the service instance
const prompt = container.get('prompt');

public targetConfiguration: Provider source

The service provider that once registered on the app container will set an function to get instance of TargetConfiguration as the targetConfiguration service.

Example:

// Register it on the container
container.register(targetConfiguration);
// Getting access to the service function
const targetConfiguration = container.get('targetConfiguration');
// Generating an instance for an specific configurations
const myNewConfig = targetConfiguration('./overwrite-path.js', configToExtend).getConfig();

public targetHTMLGenerator: Provider source

import {targetHTMLGenerator} from 'projext/src/services/cli/generators/targetHTML.js'

The service provider that once registered on the app container will set an instance of TargetHTMLGenerator as the targetHTMLGenerator service.

Example:

// Register it on the container
container.register(targetHTMLGenerator);
// Getting access to the service instance
const targetHTMLGenerator = container.get('targetHTMLGenerator');

public targets: Provider source

The service provider that once registered on the app container will set an instance of Targets as the targets service.

Example:

// Register it on the container
container.register(targets);
// Getting access to the service instance
const targets = container.get('targets');

public targetsFileRules: Provider source

The service provider that once registered on the app container will set an instance of TargetsFileRules as the targetsFileRules service.

Example:

// Register it on the container
container.register(targetsFileRules);
// Getting access to the service instance
const targetsFileRules = container.get('targetsFileRules');

public targetsFinder: Provider source

import {targetsFinder} from 'projext/src/services/targets/targetsFinder.js'

The service provider that once registered on the app container will create an instance of TargetsFinder and set its find method as the targetsFinder service.

Example:

// Register it on the container
container.register(targetsFinder);
// Getting access to the service function
const targetsFinder = container.get('targetsFinder');

public targetsHTML: Provider source

The service provider that once registered on the app container will create an instance of TargetsHTML and set it as the targetsHTML service.

Example:

// Register it on the container
container.register(targetsHTML);
// Getting access to the service function
const targetsHTML = container.get('targetsHTML');

public tempFiles: Provider source

The service provider that once registered on the app container will set an instance of TempFiles as the tempFiles service.

Example:

// Register it on the container
container.register(tempFiles);
// Getting access to the service instance
const tempFiles = container.get('tempFiles');

public utils: Provider source

The service provider that once registered on the app container will set a reference of Utils as the utils service.

Example:

// Register it on the container
container.register(utils);
// Getting access to the service reference
const utils = container.get('utils');

public versionUtils: Provider source

import {versionUtils} from 'projext/src/services/common/versionUtils.js'

The service provider that once registered on the app container will set an instance of VersionUtils as the versionUtils service.

Example:

// Register it on the container
container.register(versionUtils);
// Getting access to the service instance
const versionUtils = container.get('versionUtils');