@deployjs/angular-build
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -20,3 +20,4 @@ /*eslint-env node*/ | ||
deployUrl: '', | ||
baseHref: '/' | ||
baseHref: '/', | ||
aot: false | ||
}, | ||
@@ -30,2 +31,3 @@ | ||
var baseHref = this.readConfig('baseHref'); | ||
var aot = this.readConfig('aot'); | ||
@@ -48,2 +50,3 @@ var regex = /Angular CLI: ([0-9])\./; | ||
+ (baseHref ? ' --base-href=' + baseHref : ''), | ||
+ (aot ? ' --aot' : '') | ||
{maxBuffer: 1024 * 1024 * 32}, | ||
@@ -50,0 +53,0 @@ function(err, stdout, stderr) |
{ | ||
"name": "@deployjs/angular-build", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Build Angular projects ready for deployment", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4741
79