pass normalizeInput

This commit is contained in:
Jonathan Rainville 2018-05-10 11:14:25 -04:00
parent 83f97407e8
commit a35ce6f73e
2 changed files with 2 additions and 0 deletions

View File

@ -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 () {

View File

@ -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');
}