0.3.6 • Published 13 years ago
slake-build-utils v0.3.6
slake-build-utils
These utilities allow you to write moar concise Slakefiles, by providing some common build utilities as a reusable library.
Example
_ = require 'slake-build-utils'
fs = _.fs
glob = require 'glob' .sync
defaults = void
environment =
package: require './package.json'
build = _.build \src (file, source) -->
source |> _.compile defaults
|> _.expand-macros environment
|> fs.write (fs.as-js "lib/#file")
|> _.minify defaults
|> fs.write (fs.as-min "lib/#file")
task \build 'Builds JavaScript files out of LiveScript ones.' ->
fs.initialise \lib
for file in glob '**/*.ls', cwd: 'src' => build fileInstallation
Just grab it from NPM:
$ npm install -d slake-build-utilsBuilding
To compile everything from the source, you'll need LiveScript. Once you've
installed that, just run the Slake build task, which should generate all the
JavaScript files in the lib directory:
$ npm install -gd LiveScript
$ git clone git://github.com/killdream/slake-build-utils.git
$ cd slake-build-utils
$ npm install -d
$ slake buildLicence
Slake-build-utils is licensed under the delicious and permissive MIT
licence. You can happily copy, share, modify, sell or whatever — refer to the
actual licence text for less information:
$ less LICENCE.txt