mirror of
https://github.com/sparanoid/chinese-copywriting-guidelines.git
synced 2026-04-06 05:01:24 +08:00
15 lines
330 B
CoffeeScript
15 lines
330 B
CoffeeScript
"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"
|
|
]
|