Skip to content

Commit

Permalink
rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyZhao committed Aug 16, 2012
1 parent 02eb804 commit a660b3b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion bin/dev/wind-all-0.7.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -3238,7 +3238,10 @@

buffer.push(comment);
buffer.push(code.substring(comment.length));
buffer.push("\n");

if (i != length - 1) {
buffer.push("\n");
}
}

return buffer.join("");
Expand Down
5 changes: 4 additions & 1 deletion bin/dev/wind-compiler-0.7.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -2924,7 +2924,10 @@

buffer.push(comment);
buffer.push(code.substring(comment.length));
buffer.push("\n");

if (i != length - 1) {
buffer.push("\n");
}
}

return buffer.join("");
Expand Down
5 changes: 4 additions & 1 deletion bin/npm/wind/wind-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -2924,7 +2924,10 @@

buffer.push(comment);
buffer.push(code.substring(comment.length));
buffer.push("\n");

if (i != length - 1) {
buffer.push("\n");
}
}

return buffer.join("");
Expand Down

0 comments on commit a660b3b

Please sign in to comment.