Skip to content

Commit

Permalink
updates ignore list on compile step
Browse files Browse the repository at this point in the history
  • Loading branch information
sintaxi committed Jul 7, 2013
1 parent d1e7548 commit 173305a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ exports.compile = function(projectPath, outputPath, callback){
*/
var copyFile = function(file, done){
var ext = path.extname(file)
if(!polymer.helpers.shouldIgnore(file) && [".jade", ".less", ".md"].indexOf(ext) === -1){
if(!polymer.helpers.shouldIgnore(file) && [".jade", ".ejs", ".md", ".styl", ".less"].indexOf(ext) === -1){
var localPath = path.resolve(outputPath, file)
mkdirp(path.dirname(localPath), function(err){
fse.copy(path.resolve(publicPath, file), localPath, done)
Expand Down

0 comments on commit 173305a

Please sign in to comment.