p3x-angular-compile
Advanced tools
Comparing version 4.1.377-41 to 4.1.380-43
@@ -60,4 +60,6 @@ "use strict"; | ||
this.compiler = compiler; | ||
if (config !== undefined) { | ||
SingletonDefaultModule = config.module; | ||
if (config !== undefined && config !== null) { | ||
if (config.module !== undefined && config.module !== null) { | ||
SingletonDefaultModule = config.module; | ||
} | ||
} | ||
@@ -149,7 +151,8 @@ } | ||
TemplateComponent.ctorParameters = function () { return []; }; | ||
module = {}; | ||
if (opts.module !== undefined) { | ||
module = Object.assign({}, opts.module); | ||
} | ||
else { | ||
module = Object.assign({}, SingletonDefaultModule) || {}; | ||
else if (SingletonDefaultModule !== undefined && SingletonDefaultModule !== null) { | ||
module = Object.assign({}, SingletonDefaultModule); | ||
} | ||
@@ -156,0 +159,0 @@ module.imports = module.imports || []; |
{ | ||
"name": "p3x-angular-compile", | ||
"version": "4.1.377-41", | ||
"version": "4.1.380-43", | ||
"corifeus": { | ||
@@ -37,4 +37,4 @@ "prefix": "p3x-", | ||
"devDependencies": { | ||
"corifeus-builder-angular": "^4.1.357-46", | ||
"corifeus-web": "^4.1.345-47" | ||
"corifeus-builder-angular": "^4.1.358-47", | ||
"corifeus-web": "^4.1.346-48" | ||
}, | ||
@@ -41,0 +41,0 @@ "dependencies": {}, |
@@ -161,3 +161,3 @@ [//]: #@corifeus-header | ||
--- | ||
[**P3X-ANGULAR-COMPILE**](https://pages.corifeus.tk/angular-compile) Build v4.1.376-41 | ||
[**P3X-ANGULAR-COMPILE**](https://pages.corifeus.tk/angular-compile) Build v4.1.379-43 | ||
@@ -164,0 +164,0 @@ [Corifeus](http://www.corifeus.tk) by [Patrik Laszlo](http://patrikx3.tk) |
Sorry, the diff of this file is not supported yet
52391
480