-
Notifications
You must be signed in to change notification settings - Fork 3
/
gruntfile.js
195 lines (183 loc) · 5.55 KB
/
gruntfile.js
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
module.exports = function(grunt) {
// measures the time each task takes
require("time-grunt")(grunt);
// load time-grunt and all grunt plugins found in the package.json
require("jit-grunt")(grunt);
const sass = require('node-sass');
// grunt config
grunt.initConfig({
// Copy bower files
copy: {
css: {
files: [
{
expand: true,
src: ["docs/css/*.css"],
dest: "docs/_site/css",
flatten: true
}
]
}
},
// Compile sass files
sass: {
options: {
implementation: sass,
outputStyle: "expanded"
},
dist: {
files: {
"docs/css/style.css": "docs/_scss/style.scss",
"tests/tests.css": "tests/tests.scss"
}
}
},
// PostCSS
postcss: {
options: {
processors: [
require('autoprefixer')({browsers: 'last 2 versions'})
]
},
files: {
expand: true,
flatten: true,
src: "docs/css/*.css",
dest: "docs/css/"
}
},
// CSSmin
cssmin: {
options: {
roundingPrecision: -1,
sourceMap: false,
level: 2,
mergeSemantically: true,
restructureRules: true,
mergeNonAdjacentByBody: true,
mergeMediaQueries: true
},
site: {
files: {
"docs/css/style.css": "docs/css/style.css"
}
}
},
// Browser Sync
browserSync: {
dev: {
bsFiles: {
src: [
"docs/_site/*.*",
"docs/_site/css/*.css",
"docs/_docs/js/*.js"
]
},
options: {
port: 4558, // Illu(sion) on phone numpad
open: true, // Opens site in your default browser, no need to remember the port
notify: false,
watchTask: true,
injectChanges: true,
server: {
baseDir: "docs/_site"
}
}
}
},
// Modernizr
modernizr: {
dist: {
cache: true,
dest: "docs/js/modernizr.js",
options: ["html5shiv", "prefixedCSS", "setClasses"],
uglify: true,
tests: ["flexbox", "flexwrap"],
crawl: false,
customTests: []
}
},
// Uglify
uglify: {
options: {
sourceMap: false
},
build: {
files: {
"docs/js/scripts.js": [
"node_modules/smooth-scroll/dist/js/smooth-scroll.min.js",
"node_modules/gumshoe/dist/js/gumshoe.js",
"docs/_scripts/main.js"
]
}
}
},
// Shell commands
shell: {
jekyllBuild: {
command:
"cd docs; bundle exec jekyll build --safe --future --incremental --config _config.yml,_config.local.yml"
}
},
// Watch files
watch: {
css: {
files: [
"docs/_scss/*.scss",
"docs/_scss/**/*.scss",
"scss/*.scss",
"scss/**/*.scss",
"scss/**/**/*.scss",
"scss/**/**/**/*.scss",
"tests/*.scss",
"tests/**/*.scss",
"tests/**/**/*.scss"
],
tasks: ["sass", "postcss", "cssmin", "copy:css"],
options: {
interrupt: true,
atBegin: true
}
},
javascript: {
files: ["docs/_scripts/*.js"],
tasks: ["uglify"],
options: {
interrupt: true,
atBegin: true
}
},
jekyll: {
files: [
"docs/_includes/*.*",
"docs/_includes/**/*.*",
"docs/_includes/**/**/*.*",
"docs/_layouts/*.*",
"docs/images/*.*",
"docs/images/**/*.*",
"docs/images/**/**/*.*",
"docs/documentation/*.*",
"docs/documentation/*.*",
"docs/examples/**/*.*",
"docs/examples/*.*",
"docs/faq/**/*.*",
"docs/faq/*.*",
"docs/index.md",
"docs/config.yml"
],
tasks: ["shell:jekyllBuild"],
options: {
interrupt: false,
atBegin: true
}
}
}
});
// The dev task will be used during development
grunt.registerTask("default", [
"shell",
"modernizr",
"browserSync",
"watch"
]);
};