feat(build): add change log support

This commit is contained in:
Tunghsiao Liu
2014-07-01 19:01:37 +08:00
parent e8b347e133
commit 18c5496605
3 changed files with 48 additions and 0 deletions

14
Gruntfile.coffee Normal file
View File

@@ -0,0 +1,14 @@
"use strict"
module.exports = (grunt) ->
# Load all grunt tasks
require("matchdep").filterDev("grunt-*").forEach grunt.loadNpmTasks
# Project configurations
grunt.initConfig
config:
pkg: grunt.file.readJSON("package.json")
grunt.registerTask "default", "Default task aka. build task", [
"changelog"
]