Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lemoineat/grunt-ocamlbuild

Use ocamlbuild to compile some OCaml code with grunt
https://github.com/lemoineat/grunt-ocamlbuild

grunt javascript ocaml ocamlbuild

Last synced: 26 days ago
JSON representation

Use ocamlbuild to compile some OCaml code with grunt

Awesome Lists containing this project

README

        

# grunt-of-ocamlbuild

> Use ocamlbuild to compile some OCaml code

## Getting Started

### Requirements

* Grunt

* ocamlbuild

* Findlib (ocamlfind)

### Installation

Install this plugin:

```shell
$ npm install grunt-ocamlbuild --save-dev
```

Include the task in your Gruntfile:

```js
grunt.loadNpmTasks('grunt-ocamlbuild');
```

## ocamlbuild task

_Run this task with the `grunt ocamlbuild` command._

### target
Type: `String`

Name of the ocamlbuild target

### Options

#### args
Type: `String array`

Additional options to be passed to `ocamlbuild`.

### Usage Examples

```js
ocamlbuild: {
main: {
target: 'main.byte',
options:
args: []
},
},
```

##License

Copyright (c) 2017 Lemoine Automation Technologies

Licensed under the MIT license.