Home Reference Source

Variable

Static Public Summary
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 CLISHRunCommand as the cliSHRunCommand service.

public

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

public

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

public

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

public

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

public

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

Static Public

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 cliSHRunCommand: Provider source

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 cliSHValidateCommand: Provider source

import {cliSHValidateCommand} from 'projext-plugin-runner/src/services/cli/cliSHValidate.js'

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

Example:

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

public projextPlugin: Provider source

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

Example:

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

public runner: Provider source

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

Example:

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

public runnerFile: Provider source

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

Example:

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

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');