Skip to content
This repository was archived by the owner on Jan 10, 2024. It is now read-only.

0.1.0

Choose a tag to compare

@searls searls released this 26 May 19:31
· 9 commits to main since this release
  • Adds support for "archive" type recipes (downloads a zip or tar, unpacks it, iterates copies over a set of src/dest objects). Here's an example of the format:
steps: [
  type: "archive"
  url: "https://github.com/twbs/bootstrap/releases/download/v3.1.1/bootstrap-3.1.1-dist.zip"
  stripRootDir: true
  files: [
    {
      src: ["css/bootstrap.css", "css/bootstrap-theme.css"]
      dest: "vendor/css"
    }, {
      src: "fonts"
      dest: "vendor/static"
    }, {
      src: "js/bootstrap.js",
      dest: "vendor/js"
    }
  ]
]

(from lineman's recipes)