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
|
|
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
|
Static Public
public webpackBaseConfiguration: Provider source
import {webpackBaseConfiguration} from 'projext-plugin-webpack/src/services/configurations/baseConfiguration.js'
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
import {webpackBrowserDevelopmentConfiguration} from 'projext-plugin-webpack/src/services/configurations/browserDevelopmentConfiguration.js'
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
import {webpackBrowserProductionConfiguration} from 'projext-plugin-webpack/src/services/configurations/browserProductionConfiguration.js'
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
import {webpackBuildEngine} from 'projext-plugin-webpack/src/services/building/engine.js'
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
import {webpackConfiguration} from 'projext-plugin-webpack/src/services/building/configuration.js'
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
import {webpackMiddlewares} from 'projext-plugin-webpack/src/services/server/middlewares.js'
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
import {webpackNodeDevelopmentConfiguration} from 'projext-plugin-webpack/src/services/configurations/nodeDevelopmentConfiguration.js'
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
import {webpackNodeProductionConfiguration} from 'projext-plugin-webpack/src/services/configurations/nodeProductionConfiguration.js'
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
import {webpackRulesConfiguration} from 'projext-plugin-webpack/src/services/configurations/rulesConfiguration.js'
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');