Skip to content

Commit

Permalink
feat(build): add change log support
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Jul 1, 2014
1 parent e8b347e commit 18c5496
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
14 changes: 14 additions & 0 deletions Gruntfile.coffee
@@ -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"
]
33 changes: 33 additions & 0 deletions package.json
@@ -0,0 +1,33 @@
{
"name": "chinese-copywriting-guidelines",
"version": "0.0.1",
"description": "Chinese Copywriting Guidelines",
"author": "Tunghsiao Liu",
"homepage": "http://sparanoid.com/",
"main": "README.md",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/sparanoid/chinese-copywriting-guidelines.git"
},
"bugs": {
"url": "http://github.com/sparanoid/chinese-copywriting-guidelines/issues"
},
"licenses": {
"type": "WTFPL",
"url": "http://github.com/sparanoid/chinese-copywriting-guidelines/blob/master/LICENSE"
},
"keywords": [
"chinese",
"copywriting",
"guideline"
],
"readmeFilename": "README.md",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-conventional-changelog": "^1.1.0",
"matchdep": "^0.3.0"
}
}

0 comments on commit 18c5496

Please sign in to comment.