1.4.12 • Published 11 years ago

grunt-coffee-build v1.4.12

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

grunt-coffee-build

Compiles Coffeescript files, optionally merging and generating source maps.

Getting Started

This plugin requires Grunt ~0.4.1

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-coffee-build --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-coffee-build');

Usage Examples

grunt.initConfig
  clean:
    tests: ['build']

  coffee_build:
    options:
      wrap: true
      sourceMap: true
      disableModuleWrap: ['index.coffee']
    file:
      cwd: 'test'
      src: '**/*.coffee'
      dest: 'build/build.js'
    directory:
      ext: '.js'
      expand: true
      flatten: false
      cwd: 'test'
      src: '**/*.coffee'
      dest: './build/all'

When passing a filename to 'dest', the task will merge all files, parsing 'require' calls to take dependency order into consideration. It will also replace require calls with automatically generated identifiers representing the modules(using the file path) so it can be used without commonjs.

Since when combining every file is wrapped, the disableModuleWrap option can be used to override this behavior for certain files.

When passing a directory to 'dest', it will compile each source file individually.

1.4.12

11 years ago

1.4.11

11 years ago

1.4.9

11 years ago

1.4.8

11 years ago

1.4.7

11 years ago

1.4.6

11 years ago

1.4.5

11 years ago

1.4.4

11 years ago

1.4.3

11 years ago

1.4.2

11 years ago

1.4.1

11 years ago

1.3.1

11 years ago

1.2.1

11 years ago

1.1.1

11 years ago

1.0.1

11 years ago

0.0.8

11 years ago

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago