Skip to content

Commit

Permalink
deps: npm-packlist@7.0.3
Browse files Browse the repository at this point in the history
Closes #5918
  • Loading branch information
lukekarrys committed Dec 7, 2022
1 parent 34db562 commit 280b7a4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 2 additions & 0 deletions node_modules/npm-packlist/lib/index.js
Expand Up @@ -300,6 +300,8 @@ class PackWalker extends IgnoreWalker {
file = file.slice(1)
} else if (file.startsWith('./')) {
file = file.slice(2)
} else if (file.endsWith('/*')) {
file = file.slice(0, -2)
}
const inverse = `!${file}`
try {
Expand Down
6 changes: 3 additions & 3 deletions node_modules/npm-packlist/package.json
@@ -1,6 +1,6 @@
{
"name": "npm-packlist",
"version": "7.0.2",
"version": "7.0.3",
"description": "Get a list of the files to add from a folder into an npm package",
"directories": {
"test": "test"
Expand All @@ -18,7 +18,7 @@
"devDependencies": {
"@npmcli/arborist": "^6.0.0 || ^6.0.0-pre.0",
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.7.1",
"@npmcli/template-oss": "4.10.0",
"mutate-fs": "^2.1.1",
"tap": "^16.0.1"
},
Expand Down Expand Up @@ -55,6 +55,6 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.7.1"
"version": "4.10.0"
}
}
7 changes: 4 additions & 3 deletions package-lock.json
Expand Up @@ -168,7 +168,7 @@
"@npmcli/template-oss": "4.10.0",
"licensee": "^9.0.0",
"nock": "^13.2.4",
"npm-packlist": "^7.0.1",
"npm-packlist": "^7.0.3",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-github": "^11.2.4",
Expand Down Expand Up @@ -9534,9 +9534,10 @@
}
},
"node_modules/npm-packlist": {
"version": "7.0.2",
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.3.tgz",
"integrity": "sha512-a/TxELNw489Y7ZzXe7lRoXhKErNNgguYgBdW8nPXLcPMnMOCANiEjCwC1XDH6/5K6hkjuTrEkwtoT9C/zX3jRg==",
"inBundle": true,
"license": "ISC",
"dependencies": {
"ignore-walk": "^6.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -201,7 +201,7 @@
"@npmcli/template-oss": "4.10.0",
"licensee": "^9.0.0",
"nock": "^13.2.4",
"npm-packlist": "^7.0.1",
"npm-packlist": "^7.0.3",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-github": "^11.2.4",
Expand Down

0 comments on commit 280b7a4

Please sign in to comment.