Skip to content

Commit

Permalink
Merge branch 'release/0.0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
vogloblinsky committed Jul 8, 2017
2 parents 031fb7f + 44f55f3 commit c3372c3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="0.0.7"></a>
## 0.0.7 (2017-07-08)

### Bug Fixes

* **chore:** don't stop stream ([bc6820c](https://github.com/compodoc/gulp-compodoc/commit/bc6820c)), closes [#4](https://github.com/compodoc/gulp-compodoc/issues/4)

<a name="0.0.6"></a>
## 0.0.6 (2017-05-02)

Expand Down
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ function compodoc(options) {
app.setFiles(files);
app.generate();

process.on('exit', function() {
stream.emit('end');
});

return;
}
});
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compodoc/gulp-compodoc",
"version": "0.0.6",
"version": "0.0.7",
"description": "Compodoc plugin for gulp",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"node": ">=5.10.0"
},
"dependencies": {
"@compodoc/compodoc": "^1.0.0-beta.8",
"@compodoc/compodoc": "^1.0.0-beta.11",
"event-stream": "^3.3.4",
"gulp-util": "^3.0.7",
"through2": "^2.0.1"
Expand Down

0 comments on commit c3372c3

Please sign in to comment.