diff --git a/.npmignore b/.npmignore index 9f58bc2..2930c51 100644 --- a/.npmignore +++ b/.npmignore @@ -23,7 +23,7 @@ build/Release test # Generated docs files -docs +doc # Logo telegram.link.png diff --git a/gulpfile.js b/gulpfile.js index a68a3d6..a131502 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -4,11 +4,11 @@ var mocha = require('gulp-mocha'); var docco = require('gulp-docco'); var del = require('del'); -gulp.task('docs', function () { - del(['./docs'], function () { +gulp.task('doc', function () { + del(['./doc'], function () { gulp.src('./lib/telegram.link.js') .pipe(docco(/*{'layout': 'linear'}*/)) - .pipe(gulp.dest('./docs')); + .pipe(gulp.dest('./doc')); }); }); gulp.task('quality', function () {