Copy entire spec folder to application dir

This commit is contained in:
Kevin Sawicki 2013-09-02 17:33:45 -07:00
parent e6360594aa
commit 5664e94e05

View File

@ -22,7 +22,6 @@ module.exports = (grunt) ->
nonPackageDirectories = [
'benchmark'
'dot-atom'
'spec'
'vendor'
]
@ -52,6 +51,7 @@ module.exports = (grunt) ->
for directory in packageDirectories
cp directory, path.join(appDir, directory), filter: /.+\.(cson|coffee|less)$/
cp 'spec', path.join(appDir, 'spec')
cp 'src', path.join(appDir, 'src'), filter: /.+\.(cson|coffee|less)$/
cp 'static', path.join(appDir, 'static'), filter: /.+\.less$/
cp 'themes', path.join(appDir, 'themes'), filter: /.+\.(cson|less)$/