pass normalizeInput
This commit is contained in:
parent
83f97407e8
commit
a35ce6f73e
|
@ -139,6 +139,7 @@ class Engine {
|
|||
assetFiles: this.config.assetFiles,
|
||||
events: this.events,
|
||||
logger: this.logger,
|
||||
normalizeInput: this.normalizeInput,
|
||||
plugins: this.plugins
|
||||
});
|
||||
this.events.on('code-generator-ready', function () {
|
||||
|
|
|
@ -17,6 +17,7 @@ class Pipeline {
|
|||
this.assetFiles = options.assetFiles;
|
||||
this.events = options.events;
|
||||
this.logger = options.logger;
|
||||
this.normalizeInput = options.normalizeInput;
|
||||
this.plugins = options.plugins;
|
||||
this.pipelinePlugins = this.plugins.getPluginsFor('pipeline');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue