Home Reference Source

Variable

Static Public Summary
public

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

public

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

public

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

public

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

public

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

public

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

public

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

public

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

public

The service provider that once registered on the app container will set RollupSendFile.sendFile as the sendFile service.

Static Public

public rollupBrowserDevelopmentConfiguration: Provider source

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

Example:

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

public rollupBrowserProductionConfiguration: Provider source

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

Example:

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

public rollupBuildEngine: Provider source

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

Example:

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

public rollupConfiguration: Provider source

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

Example:

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

public rollupMiddleware: Provider source

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

Example:

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

public rollupNodeDevelopmentConfiguration: Provider source

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

Example:

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

public rollupNodeProductionConfiguration: Provider source

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

Example:

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

public rollupPluginSettingsConfiguration: Provider source

import {rollupPluginSettingsConfiguration} from 'projext-plugin-rollup/src/services/configurations/pluginsConfiguration.js'

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

Example:

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

public rollupSendFile: Provider source

import {rollupSendFile} from 'projext-plugin-rollup/src/jimpex/sendFile.js'

The service provider that once registered on the app container will set RollupSendFile.sendFile as the sendFile service.

Example:

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