Skip to content

Commit decc836

Browse files
committed
Scaffold: Normalize project (closes #73)
1 parent fb92691 commit decc836

File tree

4 files changed

+38
-12
lines changed

4 files changed

+38
-12
lines changed

.gitignore

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,29 @@
1-
.DS_Store
1+
# Logs
2+
logs
23
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# node-waf configuration
20+
.lock-wscript
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
25+
# Dependency directory
26+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
327
node_modules
4-
build
5-
*.node
6-
components
7-
.idea
28+
29+
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ MIT
132132
[appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/glob-stream.svg?label=appveyor
133133

134134
[coveralls-url]: https://coveralls.io/r/gulpjs/glob-stream
135-
[coveralls-image]: http://img.shields.io/coveralls/gulpjs/glob-stream/master.svg
135+
[coveralls-image]: http://img.shields.io/coveralls/gulpjs/glob-stream.svg
136136

137137
[gitter-url]: https://gitter.im/gulpjs/gulp
138138
[gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
{
22
"name": "glob-stream",
33
"version": "5.3.5",
4-
"description": "A wrapper around node-glob to make it streamy",
4+
"description": "A Readable Stream interface over node-glob.",
55
"author": "Gulp Team <[email protected]> (http://gulpjs.com/)",
66
"contributors": [
77
"Eric Schoffstall <[email protected]>",
88
"Blaine Bublitz <[email protected]>"
99
],
10-
"homepage": "http://gulpjs.com",
1110
"repository": "gulpjs/glob-stream",
1211
"license": "MIT",
1312
"engines": {
1413
"node": ">= 0.10"
1514
},
1615
"main": "index.js",
1716
"files": [
18-
"index.js"
17+
"index.js",
18+
"readable.js",
19+
"LICENSE"
1920
],
2021
"scripts": {
21-
"lint": "eslint . && jscs index.js test/",
22+
"lint": "eslint . && jscs index.js readable.js test/",
2223
"pretest": "npm run lint",
2324
"test": "mocha --async-only",
2425
"cover": "istanbul cover _mocha --report lcovonly",
@@ -50,6 +51,9 @@
5051
"keywords": [
5152
"glob",
5253
"stream",
53-
"gulp"
54+
"gulp",
55+
"readable",
56+
"fs",
57+
"files"
5458
]
5559
}

readable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function GlobStream(ourGlob, negatives, opt) {
3636

3737
Readable.call(this, {
3838
objectMode: true,
39-
highWaterMark: ourOpt.highWaterMark || 16
39+
highWaterMark: ourOpt.highWaterMark || 16,
4040
});
4141

4242
// Delete `highWaterMark` after inheriting from Readable

0 commit comments

Comments
 (0)