Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matype/grunt-yacp
grunt plugin for YACP.
https://github.com/matype/grunt-yacp
Last synced: 6 days 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 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-04T07:20:27.000Z (over 10 years ago)
- Last Synced: 2024-11-01T15:18:11.021Z (11 days 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 [![Build Status](https://travis-ci.org/morishitter/grunt-yacp.svg)](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.