Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
Fix syntax error in coffee...
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Nov 29, 2013
1 parent af264d8 commit aed2ea9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
# Brunch 1.7.12 (29 November 2013)
* Fixed syntax error in source code.

# Brunch 1.7.11 (29 November 2013)
* If you remove some file and create a file with the same name,
it will be handled correctly.
Expand Down
4 changes: 1 addition & 3 deletions src/fs_utils/file_list.coffee
Expand Up @@ -66,9 +66,7 @@ module.exports = class FileList extends EventEmitter
clearTimeout @timer if @timer?
@timer = setTimeout =>
# Clean disposed files.
@files
.filter (file) => file.disposed
.forEach (file) => @files.splice @files.indexOf(file), 1
@files = @files.filter (file) => not file.disposed

if Object.keys(@compiling).length is 0 and Object.keys(@copying).length is 0
@emit 'ready'
Expand Down

0 comments on commit aed2ea9

Please sign in to comment.