-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
executable file
·91 lines (67 loc) · 1.83 KB
/
Gruntfile.coffee
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
88
89
90
91
module.exports = (grunt) ->
grunt.initConfig
pkg: grunt.file.readJSON("package.json")
## Coffee ----------------------------------------------------------------
coffee:
compile:
expand: true
cwd: 'src'
src: ['**/*.coffee']
dest: 'build'
ext: '.js'
## Sass -----------------------------------------------------------------
sass:
dist:
files: [
expand: true
cwd: 'src'
src: ['**/*.scss']
dest: 'build'
ext: '.css'
]
## Handlebars -----------------------------------------------------------
handlebarslayouts:
dev:
files:
'build/*.html': 'src/templates/*.hbs'
options:
partials: [
'src/components/**/*.hbs'
'src/partials/**/*.hbs'
'src/layout.hbs'
]
## Copy ----------------------------------------------------------------
copy:
img:
expand: true
cwd: 'src'
src: ['**/*.{jpg,gif,png}']
dest: 'build'
## Clean ---------------------------------------------------------------
clean:
img:
src: ['build/img']
## Watch ---------------------------------------------------------------
watch:
options:
spawn: false
livereload: true
img:
files: ['src/**/*.{jpg,gif,png}']
tasks: ['clean:img','copy:img']
hbs:
files: ['src/**/*.hbs']
tasks: ['handlebarslayouts']
coffee:
files: ['src/**/*.coffee']
tasks: ['coffee:compile']
sass:
files: ['src/**/*.scss']
tasks: ['sass']
## Load Tasks --------------------------------------------------------------
## measures the time each task takes
require('time-grunt')(grunt);
## load grunt tasks
require('load-grunt-tasks')(grunt);
## Register Tasks ----------------------------------------------------------
grunt.registerTask "default", ['clean:img','copy:img','coffee:compile','sass','handlebarslayouts']