Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iturgeon/fuel-wrench
A Sass and Coffeescript compiler task for fuelphp to make development a little simpler.
https://github.com/iturgeon/fuel-wrench
Last synced: about 2 months ago
JSON representation
A Sass and Coffeescript compiler task for fuelphp to make development a little simpler.
- Host: GitHub
- URL: https://github.com/iturgeon/fuel-wrench
- Owner: iturgeon
- Created: 2013-04-24T13:39:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-04T06:22:19.000Z (over 11 years ago)
- Last Synced: 2024-10-12T19:37:00.222Z (3 months ago)
- Language: PHP
- Size: 105 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Installation
================1. place fuel-wrench into `fuel/packages/wrench`
2. add wrench to your config.php under `always_load.packages`
3. install sass gem `gem install sass` (requrires ruby)
4. install coffescript package `sudo npm install -g coffee-script` (requires node)Using Wrench
===============Right now wrench is really just a convinience method to compile sass and coffescript on the fly.
There are two commands:
`php oil r wrench:watch` and `php oil r wrench`
Adding `:watch` will continuously compile any assets while it's running, while the plain wrench command will issue a one time compile.
Directories
=============
Wrench compiles sass assets into `public/assets/sass` into `public/assets/css`.
Wrench compiles coffee assets into `public/assets/coffee` into `public/assets/js`.