Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazu69/grunt-init-gruntfile-coffee
Gruntfile template with coffee script.
https://github.com/kazu69/grunt-init-gruntfile-coffee
Last synced: 19 days ago
JSON representation
Gruntfile template with coffee script.
- Host: GitHub
- URL: https://github.com/kazu69/grunt-init-gruntfile-coffee
- Owner: kazu69
- Created: 2014-02-18T17:05:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-02-25T15:59:44.000Z (over 10 years ago)
- Last Synced: 2023-03-23T22:15:10.887Z (over 1 year ago)
- Language: CoffeeScript
- Homepage:
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# grunt-init-gruntfile-coffee
> Create a basic Gruntfile.coffee with [grunt-init][].
> This is a coffeescript fork of [grunt-init-gruntfile][].[grunt-init]: http://gruntjs.com/project-scaffolding
[grunt-init-gruntfile]: https://github.com/gruntjs/grunt-init-gruntfile## Installation
If you haven't already done so, install [grunt-init][].Once grunt-init is installed, place this template in your `~/.grunt-init/`
directory. It's recommended that you use git to clone this template into that
directory, as follows:```bash
git clone [email protected]:kazu69/grunt-init-gruntfile-coffee.git \
~/.grunt-init/gruntfile-coffee
```_(Windows users, see [the documentation][grunt-init] for the correct destination
directory path)_## Usage
```
npm install -g grunt-cli grunt-init
```At the command-line, cd into an empty directory, run this command and follow the
prompts.```
grunt-init gruntfile-coffee
```this grunt init file can also be used package.json following files
```
{
"name": "",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "BSD-2-Clause",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-coffee": "~0.10.0",
"load-grunt-tasks": "~0.3.0",
"time-grunt": "~0.2.9",
"grunt-newer": "~0.6.1"
}
}```
_Note that this template will generate files in the current directory, so be
sure to change to a new directory first if you don't want to overwrite existing
files._