mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-01-22 15:08:12 -05:00
21 lines
336 B
CoffeeScript
21 lines
336 B
CoffeeScript
module.exports =
|
|
options:
|
|
pretty: true
|
|
web:
|
|
files: [
|
|
{
|
|
expand: true
|
|
dest: 'build/'
|
|
cwd: 'src/'
|
|
ext: '.html'
|
|
src: '*.jade'
|
|
}
|
|
{
|
|
expand: true
|
|
dest: 'build/partials/'
|
|
cwd: 'src/partials'
|
|
ext: '.html'
|
|
src: ['*.jade']
|
|
}
|
|
]
|