fixtable
Version:
A grid library to present tabular data
37 lines (36 loc) • 444 B
text/coffeescript
module.exports =
default: [
'dist'
'watch'
]
dist: [
'clean:dist'
'distCSS'
'distJS'
]
distCSS: [
'buildCSS'
'cssmin'
]
distJS: [
'buildJS'
'uglify'
]
buildCSS: [
'copy:css'
'autoprefixer'
'notify:css'
]
buildJS: [
'coffee'
'webpack'
'clean:temp'
'notify:coffee'
]
test: [
'mocha_phantomjs:test'
]
docs: [
'groc'
'mochaTest:coverage'
]