mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-01-23 07:18:13 -05:00
19 lines
308 B
CoffeeScript
19 lines
308 B
CoffeeScript
|
module.exports =
|
||
|
web:
|
||
|
files: [
|
||
|
{
|
||
|
expand: true
|
||
|
dest: 'build/'
|
||
|
cwd: 'src/'
|
||
|
ext: '.html'
|
||
|
src: '*.jade'
|
||
|
}
|
||
|
{
|
||
|
expand: true
|
||
|
dest: 'build/partials/'
|
||
|
cwd: 'src/partials'
|
||
|
ext: '.html'
|
||
|
src: ['*.jade']
|
||
|
}
|
||
|
]
|