Skip to content

Commit ef18b39

Browse files
committed
added list of authors fixes sebpiq#65
1 parent 3ace4a7 commit ef18b39

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

AUTHORS.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Authors
2+
----------
3+
4+
```
5+
237 Sébastien Piquemal
6+
113 Chris McCormick
7+
41 Brandon James
8+
33 Sebastien Piquemal
9+
21 sebpiq
10+
3 Atul Varma
11+
1 Paul Money
12+
1 root
13+
```
14+
15+

gulpfile.js

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var path = require('path')
77
, uglify = require('gulp-uglify')
88
, mustache = require('mustache')
99
, concat = require('gulp-concat')
10+
, contribs = require('gulp-contribs')
1011
, runSequence = require('run-sequence')
1112
, source = require('vinyl-source-stream')
1213

@@ -51,6 +52,13 @@ gulp.task('lib.objectList', function() {
5152
.pipe(gulp.dest('.'))
5253
})
5354

55+
gulp.task('authors', function () {
56+
return gulp.src('AUTHORS.md')
57+
.pipe(contribs('Authors\n----------', ' '))
58+
.on('error', gutil.log)
59+
.pipe(gulp.dest('.'))
60+
})
61+
5462
gulp.task('test.browser.copy', function(){
5563
return gulp.src('./dist/webpd-latest.js')
5664
.pipe(rename('lib-build.js'))

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
"run-sequence": "1.0.x",
4545
"vinyl-source-stream": "1.0.x",
4646
"async": "0.9.x",
47-
"waatest": "git://github.com/sebpiq/WAATest.git#master"
47+
"waatest": "git://github.com/sebpiq/WAATest.git#master",
48+
"gulp-contribs": "0.0.3"
4849
},
4950
"license": "LGPL-3.0"
5051
}

0 commit comments

Comments
 (0)