-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
194 lines (184 loc) · 6.06 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
module.exports = function (grunt) {
// load time-grunt and all grunt plugins found in the package.json
require('time-grunt')(grunt);
require('jit-grunt')(grunt, {
buildcontrol: 'grunt-build-control' // plugin can't be resolved in automatic mapping
});
grunt.initConfig({
//-----------------------------------------------------
// Configure Paths
//-----------------------------------------------------
config: {
app: 'src',
dist: 'dist',
port: '9292',
takanaOn: false, // see notes in 'Watch'
// git: '[email protected]:liquidvisual/dannybeaton.com.au.git'
git: 'https://github.com/liquidvisual/dannybeaton.com.au.git'
},
//-----------------------------------------------------
// TAKANA - live Sass refreshing
//
// Sometimes Takana screws up with Foundation's 'functions.scss'.
// To fix, remove '/_scss' below. Run grunt takana, then quit..
// add '/_scss' back onto it and re-run. Don't ask.
//-----------------------------------------------------
takana: {
options: {
path: '<%= config.app %>/_scss'
}
},
//-----------------------------------------------------
// JEKYLL
//-----------------------------------------------------
shell: {
jekyllServe: {
command: "jekyll build --source <%= config.app %> --destination .tmp"
},
jekyllBuild: {
command: "jekyll build --source <%= config.app %> --destination <%= config.dist %> --config <%= config.app %>/_config.build.yml"
}
},
//-----------------------------------------------------
// BUILD CONTROL (GIT)
//-----------------------------------------------------
buildcontrol: {
options: {
commit: true,
connectCommits: false,
push: true,
message: 'Built %sourceName% from commit %sourceCommit% on branch %sourceBranch%'
},
master: {
options: {
dir: './',
remote: '<%= config.git %>',
branch: 'master'
}
},
pages: {
options: {
dir: '<%= config.dist %>',
remote: '<%= config.git %>',
branch: 'gh-pages'
}
},
local: {
options: {
remote: '../',
branch: 'build'
}
}
},
//-----------------------------------------------------
// SASS - Compiles sass only, leaves .css alone
//-----------------------------------------------------
//-----------------------------------------------------
// SASS - Compiles sass only, leaves .css alone
//-----------------------------------------------------
sass: {
temp: {
files: {
'.tmp/css/main.css' : '<%= config.app %>/_scss/main.scss',
'.tmp/css/liquidvisual.css' : '<%= config.app %>/_scss/liquidvisual/liquidvisual.scss',
'.tmp/css/foundation.css' : '<%= config.app %>/_scss/foundation/foundation.scss'
}
},
dist: {
options: {
outputStyle: 'compressed'
},
files: {
'<%= config.dist %>/css/main.css' : '<%= config.app %>/_scss/main.scss',
'<%= config.dist %>/css/liquidvisual.css' : '<%= config.app %>/_scss/liquidvisual/liquidvisual.scss',
'<%= config.dist %>/css/foundation.css' : '<%= config.app %>/_scss/foundation/foundation.scss'
}
}
},
//-----------------------------------------------------
// A. CONNECT
//-----------------------------------------------------
connect: {
options: {
port: '<%= config.port %>',
livereload: 35729,
hostname: '0.0.0.0'
},
livereload: {
options: {
open: true,
base: ['.tmp', '<%= config.app %>']
}
},
dist: {
options: {
open: true,
base: '<%= config.dist %>',
livereload: false
}
}
},
//-----------------------------------------------------
// B. WATCH
//-----------------------------------------------------
watch: {
options: {
livereload: true,
spawn: true
},
sass: {
files: ['<%= config.app %>/_scss/**/*.{scss,sass}'],
tasks: ['sass:temp'],
options : {
livereload: '<%= config.takanaOn %>' // SWITCH true to live inject but BREAK Takana
}
},
css: {
files: ['.tmp/css/**/*.css'],
tasks: [],
reload: true
},
// If any of these files change:
// 1. Run Jekyll Build
// 2. Compile Sass and drop into _site
livereload: {
options: {
livereload: '<%= connect.options.livereload %>'
},
// files: ['<%= config.app %>/index.html'],
files: [
'<%= config.app %>/**/*.html',
'<%= config.app %>/**/*.yml',
'<%= config.app %>/**/*.md',
'<%= config.app %>/scripts/**/*.js',
'<%= config.app %>/img/**/*.{gif,jpg,jpeg,png,svg,webp}'
//'!<%= config.app %>/**/_s/**'
],
tasks: ['shell:jekyllServe', 'sass:temp']
}
}
//-- end initConfig
});
//-----------------------------------------------------
// Register Tasks
//-----------------------------------------------------
grunt.registerTask('serve', [
'shell:jekyllServe',
'sass:temp',
'connect:livereload',
'watch'
]);
// Build only
grunt.registerTask('deploy', [
'shell:jekyllBuild',
'sass:dist',
// 'buildcontrol:master',
'buildcontrol:pages'
]);
// Build only
grunt.registerTask('default', [
'shell:jekyllBuild',
'sass:dist'
]);
//-- end module.exports
};