Skip to content

Commit

Permalink
Scaffold: Normalize project (closes #73)
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Feb 20, 2017
1 parent 4b411f2 commit b1e8254
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 12 deletions.
32 changes: 27 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
.DS_Store
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
build
*.node
components
.idea

.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ MIT
[appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/glob-stream.svg?label=appveyor

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

[gitter-url]: https://gitter.im/gulpjs/gulp
[gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg
14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
{
"name": "glob-stream",
"version": "5.3.5",
"description": "A wrapper around node-glob to make it streamy",
"description": "A Readable Stream interface over node-glob.",
"author": "Gulp Team <[email protected]> (http://gulpjs.com/)",
"contributors": [
"Eric Schoffstall <[email protected]>",
"Blaine Bublitz <[email protected]>"
],
"homepage": "http://gulpjs.com",
"repository": "gulpjs/glob-stream",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"index.js"
"index.js",
"readable.js",
"LICENSE"
],
"scripts": {
"lint": "eslint . && jscs index.js test/",
"lint": "eslint . && jscs index.js readable.js test/",
"pretest": "npm run lint",
"test": "mocha --async-only",
"cover": "istanbul cover _mocha --report lcovonly",
Expand Down Expand Up @@ -50,6 +51,9 @@
"keywords": [
"glob",
"stream",
"gulp"
"gulp",
"readable",
"fs",
"files"
]
}
2 changes: 1 addition & 1 deletion readable.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function GlobStream(ourGlob, negatives, opt) {

Readable.call(this, {
objectMode: true,
highWaterMark: ourOpt.highWaterMark || 16
highWaterMark: ourOpt.highWaterMark || 16,
});

// Delete `highWaterMark` after inheriting from Readable
Expand Down

0 comments on commit b1e8254

Please sign in to comment.