Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krdlab/grunt-fay
A grunt task to compile Haskell code to JavaScript using the Fay compiler
https://github.com/krdlab/grunt-fay
Last synced: 16 days ago
JSON representation
A grunt task to compile Haskell code to JavaScript using the Fay compiler
- Host: GitHub
- URL: https://github.com/krdlab/grunt-fay
- Owner: krdlab
- License: mit
- Created: 2014-04-01T18:20:01.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-03T00:25:38.000Z (over 10 years ago)
- Last Synced: 2024-10-28T09:09:08.700Z (2 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# grunt-fay
> Compile Haskell code to JavaScript using Fay
## Getting Started
This plugin requires Grunt `~0.4.1`If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
npm install grunt-fay --save-dev
```Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('grunt-fay');
```## The "fay" task
### Overview
In your project's Gruntfile, add a section named `fay` to the data object passed into `grunt.initConfig()`.```js
grunt.initConfig({
fay: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
})
```### Usage Examples
In this example, the file `hello_world.hs` in the `src` directory is compiled to `hello_world.js` in the `dest` directory.
```js
grunt.initConfig({
fay: {
files: {
'dest/hello_world.js': 'src/hello_world.hs',
},
},
})
```