forked from h5bp/Effeckt.css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
149 lines (137 loc) · 3.47 KB
/
Gruntfile.js
File metadata and controls
149 lines (137 loc) · 3.47 KB
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
module.exports = function(grunt) {
// Load NPM Tasks
// https://github.com/shootaroo/jit-grunt
require('jit-grunt')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON( 'package.json' ),
// == Grunt Dev Update
// https://npmjs.org/package/grunt-dev-update
// http://pgilad.github.io/grunt-dev-update
devUpdate: {
main: {
options: {
reportUpdated: false, // Report updated dependencies? 'false' | 'true'
updateType : "force" // 'force'|'report'|'prompt'
}
}
},
watch: {
scss: {
files: ['scss/**/*.scss'],
tasks: 'scss'
},
html: {
files: ['src/**/*.hbs'],
tasks: 'html'
},
js: {
files: ['js/**/*.js'],
tasks: 'js'
},
livereload: {
options: {
livereload: true
},
files: [
'dist/**/*.html',
'dist/assets/css/{,*/}*.css',
'dist/assets/js/{,*/}*.js'
]
}
},
sass: {
build: {
files : [
{
src : ['**/*.scss', '!**/_*.scss'],
cwd : 'scss',
dest : 'css',
ext : '.css',
expand : true
}
],
options : {
style : 'expanded'
}
}
},
// https://github.com/nDmitry/grunt-autoprefixer
autoprefixer: {
build: {
options: {
browsers: ['last 2 versions', '> 1%']
},
files: [
{
src : ['**/*.css'],
cwd : 'css',
dest : 'css',
expand : true
}
]
}
},
connect: {
server: {
options: {
port: 9001,
protocol: 'http',
hostname: 'localhost',
base: './dist/', // '.' operates from the root of your Gruntfile, otherwise -> 'Users/user-name/www-directory/website-directory'
keepalive: false, // set to false to work side by side w/watch task.
livereload: true,
open: true
}
}
},
assemble: {
options: {
flatten: true,
layout: 'layout.hbs',
layoutdir: 'src/templates/layouts',
assets: 'dist/assets',
partials: ['src/templates/pages/*.hbs', 'src/templates/parts/*.hbs']
},
demo: {
options: {
data: ['src/data/*.{json,yml}']
},
files: {
'dist/': ['src/templates/pages/*.hbs']
}
}
},
copy: {
demo: {
files: [
{ expand: true, cwd: './css', src: ['./**/*.*'], dest: 'dist/assets/css' },
{ expand: true, cwd: './js', src: ['./**/*.*'], dest: 'dist/assets/js' }
]
},
css: {
files: [
{ expand: true, cwd: './css', src: ['./**/*.*'], dest: 'dist/assets/css' }
]
},
js: {
files: [
{ expand: true, cwd: './js', src: ['./**/*.*'], dest: 'dist/assets/js' }
]
}
},
'gh-pages': {
options: {
base: 'dist'
},
src: '**/*'
}
});
grunt.registerTask('update', ['devUpdate']);
grunt.registerTask('default', ['sass', 'autoprefixer', 'assemble', 'copy']);
grunt.registerTask('scss', ['sass', 'autoprefixer', 'copy:css']);
grunt.registerTask('html', ['assemble']);
grunt.registerTask('js', ['copy:js']);
grunt.registerTask('dev', ['connect', 'watch']);
grunt.registerTask('demo', ['copy:demo', 'assemble:demo']);
grunt.registerTask('deploy', ['gh-pages']);
};