Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dheavy/coffeescript-work-env
My basic boilerplate for frontend Coffeescript work.
https://github.com/dheavy/coffeescript-work-env
Last synced: 9 days ago
JSON representation
My basic boilerplate for frontend Coffeescript work.
- Host: GitHub
- URL: https://github.com/dheavy/coffeescript-work-env
- Owner: dheavy
- Created: 2013-06-10T16:42:21.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-13T06:33:57.000Z (over 11 years ago)
- Last Synced: 2023-03-27T12:27:57.418Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 5.49 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CoffeeScript Work Environment
=============================
My basic boilerplate for frontend Coffeescript work.
Includes testing with Jasmine, a basic Cakefile, Google Closure Compiler.## Directories structure
#### src
Add .coffee files here.#### test/spec
Add your Jasmine specs here.#### lib
A cake task will output a copy of the files here.#### dist
A cake task will create here a single, assembled, minified version of the files.#### bin
Includes the Google Closure compiler to uglify and compress. Used by cake tasks.## Cake Commands
_build_ - build coffee to js, from src dir to lib dir_build:min_ - build, join, minify
_build:dist_ - build, join, minify and place in dist dir - override to fit your needs