Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

grunt-livescript

DavidSouther2730.6.0

Compile LiveScript files to JavaScript.

gruntplugin

readme

grunt-livescript

Livescript Grunt Contrib task

Usage

In a gruntfile, use similar to grunt-contrib-coffee

grunt.loadNpmTasks('grunt-livescript');

// snip

livescript: {
    src: {
      files: {
        'path/to/result.js': 'path/to/source.ls', // 1:1 compile
       'path/to/another.js': ['path/to/sources/*.ls', 'path/to/more/*.ls'] // compile and concat into single file
      }
    }
  }

changelog

v0.1.0: date: 2012-10-10 changes:

- Initial commit