build-ecs
Advanced tools
Comparing version 1.0.2-20181029192157.commit-7ae4d01 to 1.0.2-20181029232718.commit-9ab6dd4
10
index.js
@@ -10,5 +10,5 @@ #!/usr/bin/env node | ||
ts.sys.getCurrentDirectory = () => process.cwd(); | ||
const ecsPackage = JSON.parse(loadArtifact('decentraland-ecs/package.json')); | ||
const ecsPackageAMD = loadArtifact('decentraland-ecs/artifacts/amd.js'); | ||
const ecsPackageECS = loadArtifact('decentraland-ecs/dist/src/index.js'); | ||
const ecsPackage = JSON.parse(loadArtifact(process.env.ECS_PACKAGE_JSON || 'decentraland-ecs/package.json')); | ||
const ecsPackageAMD = loadArtifact(process.env.AMD_PATH || 'decentraland-ecs/artifacts/amd.js'); | ||
const ecsPackageECS = loadArtifact(process.env.ECS_PATH || 'decentraland-ecs/dist/src/index.js'); | ||
const sceneJson = JSON.parse(loadArtifact('scene.json')); | ||
@@ -108,3 +108,5 @@ const ecsVersion = ecsPackage.version; | ||
fs.writeFileSync(o.name, WATCH ? ret : compiled.code, 'utf8'); | ||
console.log('\nThe compiler is watching file changes...\n'); | ||
if (WATCH) { | ||
console.log('\nThe compiler is watching file changes...\n'); | ||
} | ||
}); | ||
@@ -111,0 +113,0 @@ } |
{ | ||
"name": "build-ecs", | ||
"version": "1.0.2-20181029192157.commit-7ae4d01", | ||
"version": "1.0.2-20181029232718.commit-9ab6dd4", | ||
"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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 3 instances 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
7930
192
5