https://github.com/dheavy/coffeescript-work-env
My basic boilerplate for frontend Coffeescript work.
https://github.com/dheavy/coffeescript-work-env
Last synced: 3 months 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 (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-13T06:33:57.000Z (about 12 years ago)
- Last Synced: 2025-02-08T11:36:16.003Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.49 MB
- Stars: 1
- Watchers: 3
- 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