Skip to content

Commit 280b7a4

Browse files
committed
1 parent 34db562 commit 280b7a4

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

node_modules/npm-packlist/lib/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,8 @@ class PackWalker extends IgnoreWalker {
300300
file = file.slice(1)
301301
} else if (file.startsWith('./')) {
302302
file = file.slice(2)
303+
} else if (file.endsWith('/*')) {
304+
file = file.slice(0, -2)
303305
}
304306
const inverse = `!${file}`
305307
try {

node_modules/npm-packlist/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "npm-packlist",
3-
"version": "7.0.2",
3+
"version": "7.0.3",
44
"description": "Get a list of the files to add from a folder into an npm package",
55
"directories": {
66
"test": "test"
@@ -18,7 +18,7 @@
1818
"devDependencies": {
1919
"@npmcli/arborist": "^6.0.0 || ^6.0.0-pre.0",
2020
"@npmcli/eslint-config": "^4.0.0",
21-
"@npmcli/template-oss": "4.7.1",
21+
"@npmcli/template-oss": "4.10.0",
2222
"mutate-fs": "^2.1.1",
2323
"tap": "^16.0.1"
2424
},
@@ -55,6 +55,6 @@
5555
},
5656
"templateOSS": {
5757
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
58-
"version": "4.7.1"
58+
"version": "4.10.0"
5959
}
6060
}

package-lock.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
"@npmcli/template-oss": "4.10.0",
169169
"licensee": "^9.0.0",
170170
"nock": "^13.2.4",
171-
"npm-packlist": "^7.0.1",
171+
"npm-packlist": "^7.0.3",
172172
"remark": "^14.0.2",
173173
"remark-gfm": "^3.0.1",
174174
"remark-github": "^11.2.4",
@@ -9534,9 +9534,10 @@
95349534
}
95359535
},
95369536
"node_modules/npm-packlist": {
9537-
"version": "7.0.2",
9537+
"version": "7.0.3",
9538+
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.3.tgz",
9539+
"integrity": "sha512-a/TxELNw489Y7ZzXe7lRoXhKErNNgguYgBdW8nPXLcPMnMOCANiEjCwC1XDH6/5K6hkjuTrEkwtoT9C/zX3jRg==",
95389540
"inBundle": true,
9539-
"license": "ISC",
95409541
"dependencies": {
95419542
"ignore-walk": "^6.0.0"
95429543
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
"@npmcli/template-oss": "4.10.0",
202202
"licensee": "^9.0.0",
203203
"nock": "^13.2.4",
204-
"npm-packlist": "^7.0.1",
204+
"npm-packlist": "^7.0.3",
205205
"remark": "^14.0.2",
206206
"remark-gfm": "^3.0.1",
207207
"remark-github": "^11.2.4",

0 commit comments

Comments
 (0)