build-ecs
Advanced tools
Comparing version 1.0.2-20181204190608.commit-8bec578 to 1.0.2-20181205165942.commit-ff3438b
@@ -17,2 +17,3 @@ #!/usr/bin/env node | ||
const WATCH = process.argv.indexOf('--watch') !== -1 || process.argv.indexOf('-w') !== -1; | ||
const INTERNAL = process.argv.indexOf('--internal') !== -1; | ||
const watchedFiles = new Set(); | ||
@@ -148,3 +149,3 @@ function compile(cfg, watch) { | ||
const mainFile = ts.sys.resolvePath(sceneJson.main); | ||
if (outFile !== mainFile) { | ||
if (!INTERNAL && outFile !== mainFile) { | ||
console.error(`! Error: tsconfig.json#outFile is not equal to scene.json#main.\n (${outFile.replace(ts.sys.getCurrentDirectory(), '')} != ${mainFile.replace(ts.sys.getCurrentDirectory(), '')})`); | ||
@@ -151,0 +152,0 @@ hasError = true; |
{ | ||
"name": "build-ecs", | ||
"version": "1.0.2-20181204190608.commit-8bec578", | ||
"version": "1.0.2-20181205165942.commit-ff3438b", | ||
"description": "", | ||
@@ -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
8003
193