forked from leny/kouto-swiss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
125 lines (116 loc) · 3.38 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
"use strict"
module.exports = ( grunt ) ->
grunt.loadNpmTasks "grunt-contrib-clean"
grunt.loadNpmTasks "grunt-contrib-watch"
grunt.loadNpmTasks "grunt-contrib-copy"
grunt.loadNpmTasks "grunt-contrib-jade"
grunt.loadNpmTasks "grunt-contrib-stylus"
grunt.loadNpmTasks "grunt-contrib-connect"
grunt.loadNpmTasks "grunt-mocha-cli"
grunt.loadNpmTasks "grunt-concurrent"
grunt.loadNpmTasks "grunt-gh-pages"
grunt.initConfig
mochacli:
options:
require: [ "should" ]
reporter: "spec"
"check-leaks": yes
"inline-diffs": yes
tests:
src: "test/runner.js"
clean:
docs: [ "docs" ]
stylus:
options:
compress: yes
use: [
require "./lib/kouto-swiss.js" # use internal kouto-swiss
]
docs:
files:
"docs/styles/styles.css": "_docs/_styles/styles.styl"
jade:
options:
compress: yes
docs:
options:
data: grunt.file.readJSON "package.json"
files:
"docs/docs.html": "_docs/_pages/docs.jade" # TODO : change this
home:
options:
data: grunt.file.readJSON "package.json"
files:
"docs/index.html": "_docs/_pages/index.jade"
copy:
assets:
expand: yes
cwd: "_docs/_styles/"
src: [ "img/**", "fonts/**" ]
dest: "docs/styles/"
scripts:
expand: yes
cwd: "_docs/_js/"
src: [ "**" ]
dest: "docs/js/"
cname:
src: "_docs/CNAME"
dest: "docs/CNAME"
readme:
src: "_docs/README.md"
dest: "docs/README.md"
"gh-pages":
options:
base: "docs"
src: "**/*"
connect:
docs:
options:
port: 5555
hostname: "*"
base: "./docs"
keepalive: yes
livereload: yes
concurrent:
docs:
tasks: [ "connect:docs", "watch" ]
options:
logConcurrentOutput: yes
watch:
options:
livereload: yes
jade:
files: "_docs/_pages/*.jade"
tasks: [ "jade", "generate" ]
styles:
files: "_docs/_styles/**/*.styl"
tasks: [ "stylus" ]
scripts:
files: "_docs/_js/**/*.js"
tasks: [ "copy:scripts" ]
docs:
files: "_docs/**/*.md"
tasks: [ "generate" ]
grunt.loadTasks "_docs/_tasks"
grunt.registerTask "default", [
"clean"
"jade"
"generate"
"stylus"
"copy"
]
grunt.registerTask "test", [
"mochacli"
]
grunt.registerTask "preview", [
"default"
"connect:docs"
]
grunt.registerTask "work", [
"default"
"concurrent"
]
grunt.registerTask "build", [
"default"
"gh-pages"
]