97 lines
2.0 KiB
CoffeeScript
97 lines
2.0 KiB
CoffeeScript
module.exports = (grunt) ->
|
|
grunt.initConfig
|
|
|
|
pkg: grunt.file.readJSON("package.json")
|
|
|
|
'clean': [
|
|
'public/js'
|
|
'public/css'
|
|
]
|
|
|
|
'mkdir':
|
|
all:
|
|
options:
|
|
create: [
|
|
'public/js'
|
|
'public/css'
|
|
]
|
|
|
|
'stylus':
|
|
app:
|
|
src: [
|
|
'src/styles/fonts.styl'
|
|
'src/styles/icons.styl'
|
|
'src/styles/chart.styl'
|
|
'src/styles/notification.styl'
|
|
'src/styles/app.styl'
|
|
]
|
|
dest: 'public/css/app.css'
|
|
|
|
'concat':
|
|
css:
|
|
src: [
|
|
# Vendor dependencies.
|
|
'node_modules/normalize.css/normalize.css'
|
|
# Our style.
|
|
'public/css/app.css'
|
|
]
|
|
dest: 'public/css/app.bundle.css'
|
|
|
|
'uglify':
|
|
bundle:
|
|
files:
|
|
'public/js/app.bundle.min.js': 'public/js/app.bundle.js'
|
|
|
|
'cssmin':
|
|
bundle:
|
|
files:
|
|
'public/css/app.min.css': 'public/css/app.css'
|
|
'public/css/app.bundle.min.css': 'public/css/app.bundle.css'
|
|
|
|
'watch':
|
|
css:
|
|
files: [ 'src/styles/**/*.styl' ]
|
|
tasks: [ 'stylus', 'concat' ]
|
|
options:
|
|
spawn: no
|
|
|
|
'gh-pages':
|
|
options:
|
|
base: 'public'
|
|
branch: 'gh-pages'
|
|
message: 'Publish to GitHub Pages'
|
|
push: yes
|
|
add: yes
|
|
src: [
|
|
'css/**/*'
|
|
'fonts/**/*'
|
|
'img/**/*'
|
|
'js/**/*'
|
|
]
|
|
|
|
grunt.loadNpmTasks('grunt-mkdir')
|
|
grunt.loadNpmTasks('grunt-contrib-clean')
|
|
grunt.loadNpmTasks('grunt-contrib-stylus')
|
|
grunt.loadNpmTasks('grunt-contrib-concat')
|
|
grunt.loadNpmTasks('grunt-contrib-uglify')
|
|
grunt.loadNpmTasks('grunt-contrib-cssmin')
|
|
grunt.loadNpmTasks('grunt-contrib-watch')
|
|
grunt.loadNpmTasks('grunt-gh-pages')
|
|
|
|
# Stylus to CSS, concat all CSS.
|
|
grunt.registerTask('css', [
|
|
'stylus:app'
|
|
'concat:css'
|
|
])
|
|
|
|
# Cleanup public directories.
|
|
grunt.registerTask('init', [
|
|
'clean'
|
|
'mkdir'
|
|
])
|
|
|
|
# Minify JS, CSS and concat JS.
|
|
grunt.registerTask('minify', [
|
|
'uglify'
|
|
'cssmin'
|
|
]) |