Skip to content

Commit d58bf40

Browse files
authoredMay 9, 2022
deps: npm-packlist@5.0.3 (#4856)
* Strip leading ./ from files entries
1 parent 38cf29a commit d58bf40

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ class Walker extends IgnoreWalker {
242242
if (excl) {
243243
pattern = pattern.slice(excl[0].length)
244244
}
245-
// strip off any / from the start of the pattern. /foo => foo
246-
pattern = pattern.replace(/^\/+/, '')
245+
// strip off any / or ./ from the start of the pattern. /foo => foo, ./foo => foo
246+
pattern = pattern.replace(/^\.?\/+/, '')
247247
// an odd number of ! means a negated pattern. !!foo ==> foo
248248
const negate = excl && excl[0].length % 2 === 1
249249
set.push({ pattern, negate })

‎node_modules/npm-packlist/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "npm-packlist",
3-
"version": "5.0.2",
3+
"version": "5.0.3",
44
"description": "Get a list of the files to add from a folder into an npm package",
55
"directories": {
66
"test": "test"
@@ -20,7 +20,7 @@
2020
],
2121
"devDependencies": {
2222
"@npmcli/eslint-config": "^3.0.1",
23-
"@npmcli/template-oss": "3.4.1",
23+
"@npmcli/template-oss": "3.4.2",
2424
"mutate-fs": "^2.1.1",
2525
"tap": "^16.0.1"
2626
},
@@ -56,6 +56,6 @@
5656
},
5757
"templateOSS": {
5858
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
59-
"version": "3.4.1"
59+
"version": "3.4.2"
6060
}
6161
}

‎package-lock.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -5152,9 +5152,9 @@
51525152
}
51535153
},
51545154
"node_modules/npm-packlist": {
5155-
"version": "5.0.2",
5156-
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.2.tgz",
5157-
"integrity": "sha512-jLhcNisUgpz6v2KC75qSeEYAM8UBMYjQ2OhlCOJjB4Ovu7XXnD25UqZ6hOQNeGShL/2ju3LL2E/zBbsuzkIQ8w==",
5155+
"version": "5.0.3",
5156+
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.3.tgz",
5157+
"integrity": "sha512-KuSbzgejxdsAWbNNyEs8EsyDHsO+nJF6k+9WuWzFbSNh5tFHs4lDApXw7kntKpuehfp8lKRzJkMtz0+WmGvTIw==",
51585158
"inBundle": true,
51595159
"dependencies": {
51605160
"glob": "^8.0.1",
@@ -13625,9 +13625,9 @@
1362513625
}
1362613626
},
1362713627
"npm-packlist": {
13628-
"version": "5.0.2",
13629-
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.2.tgz",
13630-
"integrity": "sha512-jLhcNisUgpz6v2KC75qSeEYAM8UBMYjQ2OhlCOJjB4Ovu7XXnD25UqZ6hOQNeGShL/2ju3LL2E/zBbsuzkIQ8w==",
13628+
"version": "5.0.3",
13629+
"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.0.3.tgz",
13630+
"integrity": "sha512-KuSbzgejxdsAWbNNyEs8EsyDHsO+nJF6k+9WuWzFbSNh5tFHs4lDApXw7kntKpuehfp8lKRzJkMtz0+WmGvTIw==",
1363113631
"requires": {
1363213632
"glob": "^8.0.1",
1363313633
"ignore-walk": "^5.0.1",

0 commit comments

Comments
 (0)
Please sign in to comment.