forked from kuradai/kasuga14_freshman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.coffee
109 lines (97 loc) · 2.16 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
module.exports = (grunt) ->
"use strict"
grunt.loadNpmTasks "grunt-bower-task"
grunt.loadNpmTasks 'grunt-contrib-jade'
grunt.loadNpmTasks "grunt-contrib-sass"
grunt.loadNpmTasks "grunt-contrib-coffee"
grunt.loadNpmTasks "grunt-contrib-clean"
grunt.loadNpmTasks "grunt-contrib-watch"
grunt.loadNpmTasks "grunt-contrib-copy"
grunt.loadNpmTasks "grunt-contrib-connect"
grunt.loadNpmTasks "grunt-contrib-concat"
grunt.initConfig
pkg: grunt.file.readJSON("package.json")
connect:
server:
options:
port: "8000"
base: "dst"
bower:
install:
options:
targetDir: "./dst/lib"
layout: "byComponent"
install: true
verbose: false
cleanTargetDir: true
cleanBowerDir: false
watch:
jade:
files: '**/*.jade'
tasks: ['jade']
coffee:
files: "**/*.coffee"
tasks: ["coffee"]
sass:
files: "src/sass/*.sass"
tasks: ["concat:sass", "sass"]
jade:
site:
expand: true
cwd: 'src/jade'
src: ['*.jade']
dest: 'dst'
ext: '.html'
options:
pretty: true
coffee:
compile:
options:
join: true
files:
"dst/js/app.js": ["src/coffee/*.coffee"]
sass:
compile:
options:
style: 'expanded'
compass: true
files:
"dst/css/style.css": "src/sass/tmp/style.sass"
copy:
main:
files: [
{
expand: true
src: ["src/image/*.*"]
dest: "dst/img"
flatten: true
},
{
expand: true
src: ["src/pdf/*.*"]
dest: "dst/pdf"
flatten: true
}
]
clean:
build: ["dst"]
concat:
sass:
src: [
'src/sass/init.sass'
'src/sass/mixin.sass'
'src/sass/*.sass'
],
dest: 'src/sass/tmp/style.sass'
grunt.registerTask "default", [
"clean"
"bower:install"
"concat"
"sass"
"coffee"
"jade"
"copy"
"connect"
"watch"
]
return