Skip to content

Commit

Permalink
Merge pull request #151 from swisspush/develop
Browse files Browse the repository at this point in the history
v0.9.10
  • Loading branch information
lbovet authored Oct 13, 2020
2 parents c6cc774 + d8a782d commit ad13dc7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apikana",
"version": "0.9.9",
"version": "0.9.10",
"description": "Integrated tools for REST API design - アピ",
"main": "index.js",
"bin": {
Expand Down
6 changes: 5 additions & 1 deletion src/validate-samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ module.exports = {
return gulp.src([]);
});

gulp.start();
if(fse.existsSync(path.join(root, 'src', 'samples'))) {
gulp.start();
} else {
logger.warn('No src/samples directory. Consider running `npm run create-sample`.');
}
}
};

0 comments on commit ad13dc7

Please sign in to comment.