forked from spsdco/notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cakefile
88 lines (69 loc) · 2.12 KB
/
Cakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Scrunch = require 'coffee-scrunch'
uglify = require 'uglify-js'
server = require 'node-static'
http = require 'http'
fs = require 'fs'
sass = require 'node-sass'
watch = require 'node-watch'
# Configuration
config =
port: 9294
public: 'public'
js:
folder: 'app/'
input: 'app/init.coffee'
output: 'public/application.js'
min: 'public/application.js'
sass:
input: 'css/new.scss'
output: 'public/application.css'
# Options
option '-p', '--port [port]', 'Set port for cake server'
option '-w', '--watch', 'Watch the folder for changes'
compile =
sass: (options) ->
sasscompile = ->
console.log 'Compiling SASS'
sass.render {
file: config.sass.input
success: (css) ->
fs.writeFile config.sass.output, css, (err) ->
console.warn err if err
error: (err) ->
console.warn err if err
outputStyle: 'compressed'
}
if options.watch
watch config.sass.input, sasscompile
sasscompile()
coffee: (options) ->
if options.watch
watch config.js.folder, ->
process.stdout.write 'Compiling CoffeeScript: '
Scrunch(config.js).then ->
process.stdout.write 'Done!\n'
process.stdout.write 'Compiling CoffeeScript: '
Scrunch(config.js).then ->
process.stdout.write 'Done!\n'
minify: ->
js = uglify.minify(config.js.output).code
fs.writeFile config.js.min, js
# ===============================================================
# Tasks
# ===============================================================
task 'server', 'Start server', (options) ->
# Start Server
port = options.port or config.port
file= new(server.Server)(config.public)
server = http.createServer (req, res) ->
req.addListener( 'end', ->
file.serve(req, res)
).resume()
server.listen(port)
console.log "Server started on :#{port}"
# Compile files
compile.sass(options)
compile.coffee(options)
task 'build', 'Compile CoffeeScript', compile.coffee
task 'minify', 'Minify application.js', compile.minify
task 'style', 'Compile Stylesheets', compile.sass