forked from lipis/flag-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
41 lines (33 loc) · 931 Bytes
/
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
module.exports = (grunt)->
SRC_DIR = "less"
TARGET_DIR = "css"
grunt.initConfig
less:
app_css:
src: "#{SRC_DIR}/flag-icon.less"
dest: "#{TARGET_DIR}/flag-icon.css"
cssmin:
app_css:
src: "#{TARGET_DIR}/flag-icon.css"
dest: "#{TARGET_DIR}/flag-icon.min.css"
watch:
css:
options:
livereload: true
files: "#{SRC_DIR}/*.less"
tasks: ["build"]
assets:
options:
livereload: true
files: ['index.html', 'assets/*']
connect:
server:
options:
port: 8000
keepalive: true
grunt.loadNpmTasks("grunt-contrib-less")
grunt.loadNpmTasks("grunt-contrib-cssmin")
grunt.loadNpmTasks("grunt-contrib-watch")
grunt.loadNpmTasks('grunt-contrib-connect')
grunt.registerTask("default", ["build", "watch"])
grunt.registerTask("build", ["less", "cssmin"])