|
|
@ -2,10 +2,8 @@ const fs = require('fs'); |
|
|
|
var child_process = require('child_process'); |
|
|
|
var child_process = require('child_process'); |
|
|
|
const { exit } = require('process'); |
|
|
|
const { exit } = require('process'); |
|
|
|
|
|
|
|
|
|
|
|
const child = child_process.spawnSync('grep', ['-ir', '[0-9]+commit', 'libs/**/*', 'apps/**/*', '--include', '*.ts', '--include', '*.tsx'], { encoding: 'utf8', cwd: process.cwd(), shell: true }); |
|
|
|
const child = child_process.spawnSync('grep -r --include="*.json" --include="*.ts" --include="*.tsx" "+commit" apps/**/* libs/**/*', [], { encoding: 'utf8', cwd: process.cwd(), shell: true }); |
|
|
|
const child2 = child_process.spawnSync('grep -r --include="*.json" "+commit" ', [], { encoding: 'utf8', cwd: process.cwd(), shell: true }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log('child: ', child2); |
|
|
|
|
|
|
|
if (child.error) { |
|
|
|
if (child.error) { |
|
|
|
console.log("ERROR: ", child); |
|
|
|
console.log("ERROR: ", child); |
|
|
|
exit(1); |
|
|
|
exit(1); |
|
|
@ -13,20 +11,29 @@ if (child.error) { |
|
|
|
|
|
|
|
|
|
|
|
const nonNightlyRegex = /v\d*\.\d*\.\d*\+commit\.[\d\w]*/g; |
|
|
|
const nonNightlyRegex = /v\d*\.\d*\.\d*\+commit\.[\d\w]*/g; |
|
|
|
|
|
|
|
|
|
|
|
let soljson = child.stdout.match(nonNightlyRegex); |
|
|
|
let soljson = child.stdout.match(nonNightlyRegex) || []; |
|
|
|
console.log('non nightly soljson versions found: ', soljson); |
|
|
|
console.log('non nightly soljson versions found: ', soljson); |
|
|
|
|
|
|
|
|
|
|
|
const quotedVersionsRegex = /'\d*\.\d*\.\d*\+commit\.[\d\w]*/g; |
|
|
|
const quotedVersionsRegex = /['"]\d*\.\d*\.\d*\+commit\.[\d\w]*/g; |
|
|
|
let soljson2 = child.stdout.match(quotedVersionsRegex).map((item) => item.replace('\'', 'v')); |
|
|
|
let quotedVersionsRegexMatch = child.stdout.match(quotedVersionsRegex) |
|
|
|
|
|
|
|
if(quotedVersionsRegexMatch){ |
|
|
|
|
|
|
|
let soljson2 = quotedVersionsRegexMatch.map((item) => item.replace('\'', 'v').replace('"', 'v')) |
|
|
|
console.log('quoted soljson versions found: ', soljson2); |
|
|
|
console.log('quoted soljson versions found: ', soljson2); |
|
|
|
|
|
|
|
if(soljson2) soljson = soljson.concat(soljson2); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const nightlyVersionsRegex = /\d*\.\d*\.\d-nightly.*\+commit\.[\d\w]*/g |
|
|
|
const nightlyVersionsRegex = /\d*\.\d*\.\d-nightly.*\+commit\.[\d\w]*/g |
|
|
|
let soljson3 = child.stdout.match(nightlyVersionsRegex).map((item) => 'v' + item); |
|
|
|
const nightlyVersionsRegexMatch = child.stdout.match(nightlyVersionsRegex) |
|
|
|
|
|
|
|
if(nightlyVersionsRegexMatch){ |
|
|
|
|
|
|
|
let soljson3 = nightlyVersionsRegexMatch.map((item) => 'v' + item); |
|
|
|
console.log('nightly soljson versions found: ', soljson3); |
|
|
|
console.log('nightly soljson versions found: ', soljson3); |
|
|
|
|
|
|
|
if(soljson3) soljson = soljson.concat(soljson3); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// merge the three arrays
|
|
|
|
// merge the three arrays
|
|
|
|
soljson = soljson.concat(soljson2); |
|
|
|
|
|
|
|
soljson = soljson.concat(soljson3); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log('soljson versions found: ', soljson); |
|
|
|
console.log('soljson versions found: ', soljson); |
|
|
|
|
|
|
|
|
|
|
@ -40,7 +47,6 @@ if (soljson) { |
|
|
|
// manually add some versions
|
|
|
|
// manually add some versions
|
|
|
|
|
|
|
|
|
|
|
|
soljson.push('v0.7.6+commit.7338295f'); |
|
|
|
soljson.push('v0.7.6+commit.7338295f'); |
|
|
|
soljson.push('v0.5.17+commit.d19bba13'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log('soljson versions found: ', soljson); |
|
|
|
console.log('soljson versions found: ', soljson); |
|
|
|
|
|
|
|
|
|
|
|