Home Reference Source

Variable

Static Public Summary
public

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

public

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

public

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

public

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

public

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

public

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

public

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

public

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

public

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

public

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

Static Public

public webpackBaseConfiguration: Provider source

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

Example:

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

public webpackBrowserDevelopmentConfiguration: Provider source

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

Example:

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

public webpackBrowserProductionConfiguration: Provider source

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

Example:

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

public webpackBuildEngine: Provider source

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

Example:

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

public webpackConfiguration: Provider source

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

Example:

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

public webpackMiddlewares: Provider source

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

Example:

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

public webpackNodeDevelopmentConfiguration: Provider source

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

Example:

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

public webpackNodeProductionConfiguration: Provider source

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

Example:

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

public webpackRulesConfiguration: Provider source

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

Example:

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

public webpackSendFile: Provider source

import {webpackSendFile} from 'projext-plugin-webpack/src/jimpex/sendFile.js'

The service provider that once registered on the app container will set WebpackSendFile.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');