Skip to content

Commit 40d2668

Browse files
committed
update to latest shiny stuff
* readable-stream@3 * remove sauce test garbage * new tape & bl for testing * no Buffer constructor in test * travis update (is it connected?) * remove license year
1 parent 4383b10 commit 40d2668

File tree

8 files changed

+371
-429
lines changed

8 files changed

+371
-429
lines changed

.travis.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
language: node_js
22
node_js:
3-
- '0.10'
4-
- '0.11'
3+
- '6'
4+
- '8'
5+
- '10'
56
branches:
67
only:
78
- master
89
notifications:
910
email:
1011
1112
script: npm test
12-
env:
13-
global:
14-
- SAUCE_USER=through2-sauce
15-
- secure: A8KyygIlklZOcTwTGhZHpkOu7Cn4tI1QQasg75CTSjudczGzkuh1pG2RDIkWqGcrWv9o5CjI6fFYYx0JvQu8o5PO+ZAtV1Z0AlnM965vE8kAx0XEC7giAV323bibfnHwyQu74vIhbOfdes7E4/cYerV2kAjK0T375D4DYEpDuvw=
16-

LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# The MIT License (MIT)
22

3-
**Copyright (c) 2016 Rod Vagg (the "Original Author") and additional contributors**
3+
**Copyright (c) Rod Vagg (the "Original Author") and additional contributors**
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

77
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
88

9-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![NPM](https://nodei.co/npm/through2.png?downloads&downloadRank)](https://nodei.co/npm/through2/)
44

5-
**A tiny wrapper around Node streams.Transform (Streams2) to avoid explicit subclassing noise**
5+
**A tiny wrapper around Node streams.Transform (Streams2/3) to avoid explicit subclassing noise**
66

77
Inspired by [Dominic Tarr](https://github.com/dominictarr)'s [through](https://github.com/dominictarr/through) in that it's so much easier to make a stream out of a function than it is to set up the prototype chain properly: `through(function (chunk) { ... })`.
88

@@ -133,4 +133,4 @@ var converter = FToC({objectMode: true})
133133
134134
## License
135135
136-
**through2** is Copyright (c) 2013 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.
136+
**through2** is Copyright (c) Rod Vagg [@rvagg](https://twitter.com/rvagg) and additional contributors and licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"description": "A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise",
55
"main": "through2.js",
66
"scripts": {
7-
"test": "node test/test.js | faucet",
8-
"test-local": "brtapsauce-local test/basic-test.js"
7+
"test": "node test/test.js | faucet"
98
},
109
"repository": {
1110
"type": "git",
@@ -20,13 +19,13 @@
2019
"author": "Rod Vagg <[email protected]> (https://github.com/rvagg)",
2120
"license": "MIT",
2221
"dependencies": {
23-
"readable-stream": "^2.1.5",
22+
"readable-stream": "2 || 3",
2423
"xtend": "~4.0.1"
2524
},
2625
"devDependencies": {
27-
"bl": "~1.1.2",
26+
"bl": "~2.0.1",
2827
"faucet": "0.0.1",
29-
"stream-spigot": "~3.0.5",
30-
"tape": "~4.6.2"
28+
"stream-spigot": "~3.0.6",
29+
"tape": "~4.9.1"
3130
}
3231
}

0 commit comments

Comments
 (0)