0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-25 13:29:24 +01:00
flags/Gruntfile.coffee
Panayiotis Lipiridis d051cc6931 Renamed css file
2013-09-27 03:30:36 +02:00

42 lines
931 B
CoffeeScript

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"])