timezone-country-region
Version:
lookup timezone by country, region.
39 lines (30 loc) • 977 B
text/coffeescript
module.exports = (grunt) ->
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks)
pkg = grunt.file.readJSON('package.json')
grunt.initConfig
nodemon:
options:
args: ['development']
nodeArgs: ['--debug']
watch: [
'lib',
'test'
]
legacyWatch: true
test:
script: 'test/index.js'
options:
callback: (nodemon) ->
nodemon.on 'log', (evt) ->
console.log evt.colour
nodemon.on 'restart', () ->
console.log 'restart test.'
grunt.registerTask 'default', () ->
grunt.task.run [
'nodemon'
]