You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

renovate-test.js 338 B

2 years ago
123456789
  1. #!/usr/bin/env node
  2. const { readFileSync } = require('fs')
  3. const renovate = require(__dirname + '/../renovate.json')
  4. const regex = new RegExp(renovate.regexManagers[0].matchStrings)
  5. const lines = readFileSync('cucumber.gemspec', 'utf-8').split("\n").map(line =>
  6. [line, (regex.exec(line) || { groups: "" }).groups]
  7. )
  8. console.log(lines)

No Description

Contributors (1)