Skip to content

Commit 10cb575

Browse files
committed
deps: hoist latest yallist
yallist@5 is the latest and is used by tar yallist@4 is used by a few dev deps, and minipass-fetch/minipass-pipeline which haven't updated yet
1 parent 1b3dc9a commit 10cb575

File tree

17 files changed

+602
-95
lines changed

17 files changed

+602
-95
lines changed

node_modules/.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,12 @@
9292
!/minipass-flush/node_modules/
9393
/minipass-flush/node_modules/*
9494
!/minipass-flush/node_modules/minipass
95+
!/minipass-flush/node_modules/yallist
9596
!/minipass-pipeline
9697
!/minipass-pipeline/node_modules/
9798
/minipass-pipeline/node_modules/*
9899
!/minipass-pipeline/node_modules/minipass
100+
!/minipass-pipeline/node_modules/yallist
99101
!/minipass-sized
100102
!/minipass
101103
!/minizlib
@@ -148,9 +150,6 @@
148150
!/strip-ansi
149151
!/supports-color
150152
!/tar
151-
!/tar/node_modules/
152-
/tar/node_modules/*
153-
!/tar/node_modules/yallist
154153
!/text-table
155154
!/tiny-relative-date
156155
!/tinyglobby

node_modules/yallist/LICENSE renamed to node_modules/minipass-flush/node_modules/yallist/LICENSE

File renamed without changes.

node_modules/yallist/iterator.js renamed to node_modules/minipass-flush/node_modules/yallist/iterator.js

File renamed without changes.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "yallist",
3+
"version": "4.0.0",
4+
"description": "Yet Another Linked List",
5+
"main": "yallist.js",
6+
"directories": {
7+
"test": "test"
8+
},
9+
"files": [
10+
"yallist.js",
11+
"iterator.js"
12+
],
13+
"dependencies": {},
14+
"devDependencies": {
15+
"tap": "^12.1.0"
16+
},
17+
"scripts": {
18+
"test": "tap test/*.js --100",
19+
"preversion": "npm test",
20+
"postversion": "npm publish",
21+
"postpublish": "git push origin --all; git push origin --tags"
22+
},
23+
"repository": {
24+
"type": "git",
25+
"url": "git+https://github.com/isaacs/yallist.git"
26+
},
27+
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
28+
"license": "ISC"
29+
}

node_modules/yallist/yallist.js renamed to node_modules/minipass-flush/node_modules/yallist/yallist.js

File renamed without changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) Isaac Z. Schlueter and Contributors
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
'use strict'
2+
module.exports = function (Yallist) {
3+
Yallist.prototype[Symbol.iterator] = function* () {
4+
for (let walker = this.head; walker; walker = walker.next) {
5+
yield walker.value
6+
}
7+
}
8+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "yallist",
3+
"version": "4.0.0",
4+
"description": "Yet Another Linked List",
5+
"main": "yallist.js",
6+
"directories": {
7+
"test": "test"
8+
},
9+
"files": [
10+
"yallist.js",
11+
"iterator.js"
12+
],
13+
"dependencies": {},
14+
"devDependencies": {
15+
"tap": "^12.1.0"
16+
},
17+
"scripts": {
18+
"test": "tap test/*.js --100",
19+
"preversion": "npm test",
20+
"postversion": "npm publish",
21+
"postpublish": "git push origin --all; git push origin --tags"
22+
},
23+
"repository": {
24+
"type": "git",
25+
"url": "git+https://github.com/isaacs/yallist.git"
26+
},
27+
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
28+
"license": "ISC"
29+
}

0 commit comments

Comments
 (0)