Variable
Static Public Summary | ||
public |
The service provider that once registered on the app container will set an instance of
|
|
public |
The service provider that once registered on the app container will set an instance of
|
|
public |
The service provider that once registered on the app container will set an instance of
|
|
public |
The service provider that once registered on the app container will set an instance of
|
|
public |
The service provider that once registered on the app container will set an instance of
|
|
public |
The service provider that once registered on the app container will set an instance of
|
|
public |
The service provider that once registered on the app container will set an instance of
|
Static Public
public cli: Provider source
import {cli} from 'projext-plugin-runner/src/services/cli/cli.js'
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
import {cliSHRunCommand} from 'projext-plugin-runner/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 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
import {projextPlugin} from 'projext-plugin-runner/src/services/utils/projextPlugin.js'
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
import {runner} from 'projext-plugin-runner/src/services/runner/runner.js'
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
import {runnerFile} from 'projext-plugin-runner/src/services/runner/file.js'
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
import {targets} from 'projext-plugin-runner/src/services/runner/targets.js'
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');