@@ -1013,7 +1013,7 @@ async function mapJsonRecursive(
1013
1013
// Get release info
1014
1014
if ( DEBUG )
1015
1015
console . log (
1016
- `Getting latest version for ${ green ( localPath . package ) } . . .`
1016
+ `Getting latest version for ${ green ( localPath . package ) } .. .`
1017
1017
) ;
1018
1018
const release = await getAsync (
1019
1019
`https://api.github.com/repos/${ owner } /${ repo } /releases/${
@@ -1038,7 +1038,7 @@ async function mapJsonRecursive(
1038
1038
// Download release asset
1039
1039
if ( ! fs . existsSync ( assetFile + assetExt ) ) {
1040
1040
if ( DEBUG )
1041
- console . log ( `Downloading ${ green ( localPath . package ) } . . .` ) ;
1041
+ console . log ( `Downloading ${ green ( localPath . package ) } .. .` ) ;
1042
1042
1043
1043
let matchingAssetInfo ;
1044
1044
if ( localPath . type != "repo" ) {
@@ -1261,7 +1261,7 @@ function runJobs(event, localPath) {
1261
1261
// Check for updates
1262
1262
1263
1263
if ( MODE != "fetch" && CONFIG . AutoUpdate ) {
1264
- console . log ( "Checking for updates . . ." ) ;
1264
+ console . log ( "Checking for updates.. ." ) ;
1265
1265
try {
1266
1266
// Grab latest version info
1267
1267
let latest = await getAsync (
@@ -1292,7 +1292,7 @@ function runJobs(event, localPath) {
1292
1292
) ;
1293
1293
1294
1294
// Download latest version
1295
- console . log ( `Updating to ${ green ( latest . name ) } . . .` ) ;
1295
+ console . log ( `Updating to ${ green ( latest . name ) } .. .` ) ;
1296
1296
const assetName = `lync-${
1297
1297
latest . tag_name
1298
1298
} -${ PLATFORM } -${ os . arch ( ) } .zip`;
@@ -1366,24 +1366,24 @@ function runJobs(event, localPath) {
1366
1366
1367
1367
// Begin
1368
1368
1369
- console . log ( "Path:" , cyan ( process . cwd ( ) ) ) ;
1370
- console . log ( "Args:" , ARGS ) ;
1369
+ // console.log("Path:", cyan(process.cwd()));
1370
+ // console.log("Args:", ARGS);
1371
1371
1372
1372
http . globalAgent . maxSockets = 65535 ;
1373
1373
1374
1374
// Map project
1375
1375
1376
1376
await changedJson ( ) ;
1377
1377
firstMapped = true ;
1378
- console . log ( ) ;
1378
+ // console.log();
1379
1379
1380
1380
// Download sources
1381
1381
if ( MODE == "fetch" ) {
1382
1382
if ( ! ( "sources" in projectJson ) || projectJson . length == 0 )
1383
1383
console . log ( "Nothing to download" ) ;
1384
1384
for ( const index in projectJson . sources ) {
1385
1385
const source = projectJson . sources [ index ] ;
1386
- console . log ( "Fetching source" , green ( source . name ) , ". . ." ) ;
1386
+ console . log ( "Fetching source" , green ( source . name ) , ".. ." ) ;
1387
1387
try {
1388
1388
let contents ;
1389
1389
if ( source . type == "GET" ) {
@@ -1472,7 +1472,7 @@ function runJobs(event, localPath) {
1472
1472
) ;
1473
1473
1474
1474
// Write validation script
1475
- if ( DEBUG ) console . log ( "Writing validation script . . ." ) ;
1475
+ if ( DEBUG ) console . log ( "Writing validation script.. ." ) ;
1476
1476
let validationScript = fs . readFileSync (
1477
1477
path . resolve ( __dirname , "luneBuildTemplate.luau" )
1478
1478
) ;
@@ -1487,7 +1487,7 @@ function runJobs(event, localPath) {
1487
1487
fs . writeFileSync ( buildScriptPath , validationScript ) ;
1488
1488
1489
1489
// Validate loadstrings
1490
- if ( DEBUG ) console . log ( "Validating loadstrings . . ." ) ;
1490
+ if ( DEBUG ) console . log ( "Validating loadstrings.. ." ) ;
1491
1491
const validationStatus = spawnSync (
1492
1492
lunePath ,
1493
1493
[ "run" , `${ buildScriptPath } ` ] ,
@@ -1513,7 +1513,7 @@ function runJobs(event, localPath) {
1513
1513
}
1514
1514
1515
1515
// Write build script
1516
- if ( DEBUG ) console . log ( "Writing build script . . ." ) ;
1516
+ if ( DEBUG ) console . log ( "Writing build script.. ." ) ;
1517
1517
let buildScript =
1518
1518
fs . readFileSync ( path . resolve ( __dirname , "luneBuildTemplate.luau" ) ) +
1519
1519
`\nworkspace:SetAttribute("__lyncbuildfile", ${ projectJson . port } )\n` +
@@ -1528,7 +1528,7 @@ function runJobs(event, localPath) {
1528
1528
fs . writeFileSync ( buildScriptPath , buildScript ) ;
1529
1529
1530
1530
// Build RBXL
1531
- if ( DEBUG ) console . log ( "Building RBXL . . ." ) ;
1531
+ if ( DEBUG ) console . log ( "Building RBXL.. ." ) ;
1532
1532
const build = spawn ( lunePath , [ "run" , `${ buildScriptPath } ` ] , {
1533
1533
cwd : process . cwd ( ) ,
1534
1534
detached : false ,
@@ -1734,7 +1734,7 @@ function runJobs(event, localPath) {
1734
1734
localPathStats . isFile ( ) &&
1735
1735
mTimes [ localPath ] != localPathStats . mtimeMs
1736
1736
) {
1737
- console . log ( "M" , cyan ( localPath ) ) ;
1737
+ // console.log("M", cyan(localPath));
1738
1738
for ( const key in map . tree ) {
1739
1739
if (
1740
1740
localPathIsInit ( localPath ) &&
0 commit comments