-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.coffee
134 lines (118 loc) · 2.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
126
127
128
129
130
131
132
133
134
module.exports = ( grunt ) ->
'use strict'
grunt.initConfig (
# Watch
watch:
options:
spawn: true
dateFormat: ( time ) ->
grunt.log.writeln( 'The watch finished in ' + time.toFixed( 2 ) + 'ms.' )
grunt.log.writeln( '' )
compass:
files: [ 'styles/{,*/}*.{sass,scss}' ]
tasks: [ 'compass:compile' ]
autoprefixer:
files: [ '.tmp/{,*/}*.css' ]
tasks: [ 'autoprefixer:compile' ]
livereload:
options:
livereload: true
files: [
'views/{,*/}*.jade'
'public/css/{,*/}*.css'
'public/js/{,*/}*.js'
'public/img/{,*/}*.{png,jpg,jpeg,gif,webp,svg}'
]
express:
options:
livereload: true
spawn: false
files: [
'app.js'
'routes/{,*/}*.js'
]
tasks: [ 'express:server' ]
# Compass
compass:
compile:
options:
sassDir: 'styles'
cssDir: '.tmp'
relativeAssets: true
noLineComments: true
# Autoprefixer
autoprefixer:
compile:
options:
browsers: [ 'last 2 version' ]
files:
'public/css/styles.css' : '.tmp/styles.css'
# Sever
express:
server:
options:
port: process.env.PORT || 3000
script: 'app.js'
# SVGMin
svgmin:
collections:
files: [
expand: true,
cwd: 'collections/',
src: ['*/*.svg'],
dest: 'collections/',
ext: '.svg'
]
public:
files: [
expand: true,
cwd: 'public/',
src: ['*/*.svg'],
dest: 'public/',
ext: '.svg'
]
# ImageMin
imagemin:
collections:
options:
optimizationLevel: 7
files: [
expand: true
cwd: 'collections/',
src: ['*/*.png'],
dest: 'collections/',
ext: '.png'
]
public:
files: [
expand: true,
cwd: 'public/',
src: ['*/*.png'],
dest: 'public/',
ext: '.png'
]
# Backup
copy:
backup:
files: [
expand: true
src: ['collections/**']
dest: '.tmp/'
]
)
# Load GruntTasks
require( 'matchdep' ).filterDev( 'grunt-*' ).forEach( grunt.loadNpmTasks )
# Tasks
grunt.registerTask 'default', [
'compass:compile'
'autoprefixer:compile'
'express'
'watch'
]
grunt.registerTask 'minify', [
'copy:backup'
'svgmin:collections'
'svgmin:public'
'imagemin:collections'
'imagemin:public'
]