Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lemoineat/grunt-ocamlbuild
- Owner: lemoineat
- License: mit
- Created: 2017-06-06T09:52:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T08:32:39.000Z (almost 2 years ago)
- Last Synced: 2024-10-16T05:32:09.271Z (3 months ago)
- Topics: grunt, javascript, ocaml, ocamlbuild
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
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.