# grunt-react-rcs

> Grunt task for compiling RCS styles into CSS.

Latest version **0.0.5** (published 2014-07-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install grunt-react-rcs
pnpm add grunt-react-rcs
yarn add grunt-react-rcs
bun add grunt-react-rcs
```

## Health

**Score 5/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: insecure dependencies; abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2014-07-19 |
| First published | 2014-07-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Chad Scira |
| Maintainers | icodeforlove |

## Links

- npm: https://www.npmjs.com/package/grunt-react-rcs
- Repository: https://github.com/icodeforlove/grunt-react-rcs
- Issues: https://github.com/icodeforlove/grunt-react-rcs/issues
- npm.io page: https://npm.io/package/grunt-react-rcs

## Dependencies (7)

- [glob](https://npm.io/package/glob.md) ~4.0.4
- [cubby](https://npm.io/package/cubby.md) ~0.0.3
- [colors](https://npm.io/package/colors.md) ~0.6.2
- [bluebird](https://npm.io/package/bluebird.md) ~2.2.1
- [whenplus](https://npm.io/package/whenplus.md) ~1.7.1-g
- [react-rcs](https://npm.io/package/react-rcs.md) git://github.com/icodeforlove/react-rcs.git
- [promise-object](https://npm.io/package/promise-object.md) ~0.1.2

## Recent versions

- 0.0.5 (latest) — 2014-07-19
- 0.0.4 — 2014-07-19
- 0.0.3 — 2014-07-16
- 0.0.2 — 2014-07-16
- 0.0.1 — 2014-07-12
- 0.0.0 — 2014-07-12

## README

# grunt-react-rcs

A grunt task that compiles your RCS to css.

```
	npm install grunt-react-rcs --save-dev
```

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

```
	grunt.loadNpmTasks('grunt-react-rcs');
```

## uses?

The basic usage is generating CSS files next to your RCS files, this is mainly good to build with a tmp output structure.

```javascript
rcs: {
	build: {
		files: [
			{expand: true, cwd: 'scripts/', src: ['**/*.rcs'], dest: 'build/'}
		]
	}
}
```

You can also set your RCS `rcs.settings.js` file like this

```javascript
rcs: {
	config: {
		settings: 'scripts/rcs.settings.js'
	},

	build: {
		files: [
			{expand: true, cwd: 'scripts/', src: ['**/*.rcs'], dest: 'build/'}
		]
	}
}
```

---
_Source: https://npm.io/package/grunt-react-rcs · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
