Skip to content

Commit 18c5496

Browse files
committed
feat(build): add change log support
1 parent e8b347e commit 18c5496

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

Gruntfile.coffee

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
"use strict"
2+
module.exports = (grunt) ->
3+
4+
# Load all grunt tasks
5+
require("matchdep").filterDev("grunt-*").forEach grunt.loadNpmTasks
6+
7+
# Project configurations
8+
grunt.initConfig
9+
config:
10+
pkg: grunt.file.readJSON("package.json")
11+
12+
grunt.registerTask "default", "Default task aka. build task", [
13+
"changelog"
14+
]

package.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "chinese-copywriting-guidelines",
3+
"version": "0.0.1",
4+
"description": "Chinese Copywriting Guidelines",
5+
"author": "Tunghsiao Liu",
6+
"homepage": "http://sparanoid.com/",
7+
"main": "README.md",
8+
"scripts": {
9+
"test": "grunt"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git://github.com/sparanoid/chinese-copywriting-guidelines.git"
14+
},
15+
"bugs": {
16+
"url": "http://github.com/sparanoid/chinese-copywriting-guidelines/issues"
17+
},
18+
"licenses": {
19+
"type": "WTFPL",
20+
"url": "http://github.com/sparanoid/chinese-copywriting-guidelines/blob/master/LICENSE"
21+
},
22+
"keywords": [
23+
"chinese",
24+
"copywriting",
25+
"guideline"
26+
],
27+
"readmeFilename": "README.md",
28+
"devDependencies": {
29+
"grunt": "^0.4.5",
30+
"grunt-conventional-changelog": "^1.1.0",
31+
"matchdep": "^0.3.0"
32+
}
33+
}

0 commit comments

Comments
 (0)