Skip to content

v1.0.0

Compare
Choose a tag to compare
@chimurai chimurai released this 10 Sep 21:26
· 414 commits to master since this release
80814fe

Changes

  • complete rewrite
  • configurable version flag
  • throws on errors
  • force option; don't throw on errors
  • quiet option; only print result on errors

Migration instructions

OLD:

.requirementsrc

{
  "software": {
    "java": ">= 1.7.x",
    "mvn": "^4.x",
    "node": ">= 5.x",
    "npm": ">= 3.x",
    "eslint": "^3.x",
    "yarn": "^0.x"
  }
}

NEW:

requirements.config.js

module.exports = {
  "software": {
    "java": ">= 1.7.x",
    "mvn": "^4.x",
    "node": ">= 5.x",
    "npm": ">= 3.x",
    "eslint": "^3.x",
    "yarn": "^0.x"
  }
}