Skip to content

Commit 041130c

Browse files
committed
style(prettier): Use prettier for code formatting
Also fixes the position of the GreenKeeper badge in the README Refs documentationjs/documentation#709 the main issue for documentation
1 parent 9386402 commit 041130c

File tree

4 files changed

+74
-40
lines changed

4 files changed

+74
-40
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# gulp-documentation
22

3+
[![Circle CI](https://circleci.com/gh/documentationjs/gulp-documentation.svg?style=shield)](https://circleci.com/gh/documentationjs/gulp-documentation)
34
[![Greenkeeper badge](https://badges.greenkeeper.io/documentationjs/gulp-documentation.svg)](https://greenkeeper.io/)
45

5-
[![Circle CI](https://circleci.com/gh/documentationjs/gulp-documentation.svg?style=svg)](https://circleci.com/gh/documentationjs/gulp-documentation)
6-
76
Use [gulp](http://gulpjs.com/) with
87
[documentation](https://github.com/documentationjs/documentation)
98
to generate great documentation for your JavaScript projects.

index.js lib/index.js

+42-24
Original file line numberDiff line numberDiff line change
@@ -68,35 +68,53 @@ var File = require('vinyl');
6868
* .pipe(gulp.dest('html-documentation'));
6969
* });
7070
*/
71-
module.exports = function (format, options, formatterOptions) {
71+
module.exports = function(format, options, formatterOptions) {
7272
options = options || {};
7373
formatterOptions = formatterOptions || {};
7474
var files = [];
7575
format = format || 'md';
7676
var formatter = documentation.formats[format];
7777
if (!formatter) {
78-
throw new Error('invalid format given: valid options are ' + Object.keys(documentation.formats).join(', '));
78+
throw new Error(
79+
'invalid format given: valid options are ' +
80+
Object.keys(documentation.formats).join(', ')
81+
);
7982
}
80-
return through2.obj(function document(file, enc, cb) {
81-
files.push(file);
82-
cb();
83-
}, function (cb) {
84-
documentation.build(files.map(function(file) {
85-
return file.path;
86-
}), options, function(err, comments) {
87-
formatter(comments, formatterOptions, function (err, output) {
88-
if (format === 'json' || format === 'md') {
89-
this.push(new File({
90-
path: options.filename || 'API.' + format,
91-
contents: new Buffer(output)
92-
}));
93-
} else if (format === 'html') {
94-
output.forEach(function(file) {
95-
this.push(file);
96-
}.bind(this));
97-
}
98-
cb();
99-
}.bind(this));
100-
}.bind(this));
101-
});
83+
return through2.obj(
84+
function document(file, enc, cb) {
85+
files.push(file);
86+
cb();
87+
},
88+
function(cb) {
89+
documentation.build(
90+
files.map(function(file) {
91+
return file.path;
92+
}),
93+
options,
94+
function(err, comments) {
95+
formatter(
96+
comments,
97+
formatterOptions,
98+
function(err, output) {
99+
if (format === 'json' || format === 'md') {
100+
this.push(
101+
new File({
102+
path: options.filename || 'API.' + format,
103+
contents: new Buffer(output)
104+
})
105+
);
106+
} else if (format === 'html') {
107+
output.forEach(
108+
function(file) {
109+
this.push(file);
110+
}.bind(this)
111+
);
112+
}
113+
cb();
114+
}.bind(this)
115+
);
116+
}.bind(this)
117+
);
118+
}
119+
);
102120
};

package.json

+12-4
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@
44
"version": "3.1.0",
55
"author": "Tom MacWright",
66
"dependencies": {
7-
"documentation": "4.0.0-beta16",
7+
"documentation": "4.0.0-beta.18",
88
"through2": "^2.0.1",
99
"vinyl": "^2.0.0"
1010
},
1111
"devDependencies": {
1212
"concat-stream": "^1.4.8",
1313
"cz-conventional-changelog": "^2.0.0",
14-
"eslint": "^3.9.1",
1514
"gulp": "^3.8.11",
15+
"husky": "^0.13.3",
16+
"lint-staged": "^3.4.0",
17+
"prettier": "^0.22.0",
1618
"tap": "10.3.2"
1719
},
1820
"keywords": [
@@ -22,18 +24,24 @@
2224
"jsdoc"
2325
],
2426
"license": "BSD-2-Clause",
25-
"main": "index.js",
27+
"main": "lib/index.js",
2628
"repository": {
2729
"type": "git",
2830
"url": "[email protected]:documentationjs/gulp-documentation.git"
2931
},
3032
"scripts": {
31-
"test": "eslint . && tap test/test.js",
33+
"precommit": "lint-staged --verbose",
34+
"format": "prettier --write '{lib,test}/**/*.js' --single-quote",
3235
"docs": "documentation readme index.js --section=API"
3336
},
3437
"config": {
3538
"commitizen": {
3639
"path": "./node_modules/cz-conventional-changelog"
3740
}
41+
},
42+
"lint-staged": {
43+
"*.js": [
44+
"prettier --write --single-quote"
45+
]
3846
}
3947
}

test/test.js

+19-10
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ test('gulp-documentation', function(t) {
1010
});
1111

1212
test('gulp-documentation md', function(t) {
13-
gulp.src(path.join(__dirname, '/fixture.js'))
13+
gulp
14+
.src(path.join(__dirname, '/fixture.js'))
1415
.pipe(documentation('md', {}, {}))
1516
.on('data', function(d) {
1617
t.equal(d.path, 'API.md');
@@ -19,7 +20,8 @@ test('gulp-documentation md', function(t) {
1920
});
2021

2122
test('gulp-documentation md custom name', function(t) {
22-
gulp.src(path.join(__dirname, '/fixture.js'))
23+
gulp
24+
.src(path.join(__dirname, '/fixture.js'))
2325
.pipe(documentation('md', { filename: 'foo.md' }))
2426
.on('data', function(d) {
2527
t.equal(d.path, 'foo.md');
@@ -28,7 +30,8 @@ test('gulp-documentation md custom name', function(t) {
2830
});
2931

3032
test('gulp-documentation json', function(t) {
31-
gulp.src(path.join(__dirname, '/fixture.js'))
33+
gulp
34+
.src(path.join(__dirname, '/fixture.js'))
3235
.pipe(documentation('json'))
3336
.on('data', function(d) {
3437
t.ok(JSON.parse(d.contents), 'is json');
@@ -37,18 +40,24 @@ test('gulp-documentation json', function(t) {
3740
});
3841

3942
test('gulp-documentation html', function(t) {
40-
gulp.src(path.join(__dirname, '/fixture.js'))
43+
gulp
44+
.src(path.join(__dirname, '/fixture.js'))
4145
.pipe(documentation('html'))
42-
.pipe(concat(function(d) {
43-
t.equal(d.length, 34);
44-
t.end();
45-
}));
46+
.pipe(
47+
concat(function(d) {
48+
t.equal(d.length, 34);
49+
t.end();
50+
})
51+
);
4652
});
4753

4854
test('gulp-documentation exit callback', function(t) {
4955
t.plan(1);
50-
gulp.src(path.join(__dirname, '/fixture.js'))
56+
gulp
57+
.src(path.join(__dirname, '/fixture.js'))
5158
.pipe(documentation('md'))
52-
.on('end', function() { t.pass(); })
59+
.on('end', function() {
60+
t.pass();
61+
})
5362
.resume();
5463
});

0 commit comments

Comments
 (0)