Skip to content

Commit 2146e1f

Browse files
committedMay 7, 2024
deps: npm-bundled@3.0.1
1 parent ff6c5d1 commit 2146e1f

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed
 

‎DEPENDENCIES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ graph LR;
105105
npm-->libnpmteam;
106106
npm-->libnpmversion;
107107
npm-->make-fetch-happen;
108-
npm-->minipass-fetch;
109108
npm-->nopt;
110109
npm-->normalize-package-data;
111110
npm-->npm-audit-report;
111+
npm-->npm-bundled;
112112
npm-->npm-install-checks;
113113
npm-->npm-package-arg;
114114
npm-->npm-packlist;
@@ -494,7 +494,6 @@ graph LR;
494494
npm-->libnpmversion;
495495
npm-->make-fetch-happen;
496496
npm-->minimatch;
497-
npm-->minipass-fetch;
498497
npm-->minipass-pipeline;
499498
npm-->minipass;
500499
npm-->ms;
@@ -503,6 +502,7 @@ graph LR;
503502
npm-->nopt;
504503
npm-->normalize-package-data;
505504
npm-->npm-audit-report;
505+
npm-->npm-bundled;
506506
npm-->npm-install-checks;
507507
npm-->npm-package-arg;
508508
npm-->npm-packlist;

‎node_modules/npm-bundled/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class BundleWalker extends EE {
154154
path: p,
155155
parent: this,
156156
})
157-
child.on('done', _ => {
157+
child.on('done', () => {
158158
if (--this.children === 0) {
159159
this.done()
160160
}

‎node_modules/npm-bundled/package.json

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
{
22
"name": "npm-bundled",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "list things in node_modules that are bundledDependencies, or transitive dependencies thereof",
55
"main": "lib/index.js",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/npm/npm-bundled.git"
8+
"url": "git+https://github.com/npm/npm-bundled.git"
99
},
1010
"author": "GitHub Inc.",
1111
"license": "ISC",
1212
"devDependencies": {
1313
"@npmcli/eslint-config": "^4.0.0",
14-
"@npmcli/template-oss": "4.5.1",
15-
"mkdirp": "^1.0.4",
14+
"@npmcli/template-oss": "4.22.0",
1615
"mutate-fs": "^2.1.1",
17-
"rimraf": "^3.0.2",
1816
"tap": "^16.3.0"
1917
},
2018
"scripts": {
2119
"test": "tap",
22-
"lint": "eslint \"**/*.js\"",
20+
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
2321
"postlint": "template-oss-check",
2422
"template-oss-apply": "template-oss-apply --force",
2523
"lintfix": "npm run lint -- --fix",
@@ -38,7 +36,8 @@
3836
},
3937
"templateOSS": {
4038
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
41-
"version": "4.5.1"
39+
"version": "4.22.0",
40+
"publish": true
4241
},
4342
"tap": {
4443
"nyc-arg": [

‎package-lock.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -8798,10 +8798,11 @@
87988798
}
87998799
},
88008800
"node_modules/npm-bundled": {
8801-
"version": "3.0.0",
8802-
"resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz",
8803-
"integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==",
8801+
"version": "3.0.1",
8802+
"resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz",
8803+
"integrity": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==",
88048804
"inBundle": true,
8805+
"license": "ISC",
88058806
"dependencies": {
88068807
"npm-normalize-package-bin": "^3.0.0"
88078808
},

0 commit comments

Comments
 (0)