https://github.com/matype/grunt-yacp
grunt plugin for YACP.
https://github.com/matype/grunt-yacp
Last synced: 9 months ago
JSON representation
grunt plugin for YACP.
- Host: GitHub
- URL: https://github.com/matype/grunt-yacp
- Owner: matype
- Created: 2014-04-23T02:39:31.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-04T07:20:27.000Z (about 12 years ago)
- Last Synced: 2025-02-03T13:15:59.730Z (over 1 year ago)
- Language: JavaScript
- Size: 145 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# grunt-yacp [](https://travis-ci.org/morishitter/grunt-yacp)
> Compile [YACP](https://github.com/morishitter/YACP) files to CSS
## Getting Started
This plugin requires Grunt`~0.4.0`
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-yacp --save-dev
```
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
```js
grunt.loadNpmTasks('grunt-yacp');
```
## The "yacp" task
### Overview
In your project's Gruntfile, add a section named `yacp` to the data object passed into `grunt.initConfig()`.
```js
grunt.initConfig({
yacp: {
compile: {
files: {
'tmp/yacp.css': ['test/fixtures/yacp.css'],
'tmp/concat.css': ['test/fixtures/yacp.css', 'test/fixtures/yacp2.css'],
}
}
}
});
```
## License
Copyright (c) 2014 Masaaki Morishita. Licensed under the MIT license.