Skip to content

Commit

Permalink
deps: ignore-walk@6.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 7, 2024
1 parent 7e15b6d commit 552113e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.22.0",
"front-matter": "^4.0.2",
"ignore-walk": "^6.0.1",
"ignore-walk": "^6.0.5",
"jsdom": "^24.0.0",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions node_modules/ignore-walk/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Walker extends EE {
.filter(e => this.isIgnoreFile(e))

let igCount = newIg.length
const then = _ => {
const then = () => {
if (--igCount === 0) {
this.filterEntries()
}
Expand Down Expand Up @@ -141,7 +141,7 @@ class Walker extends EE {
if (entryCount === 0) {
this.emit('done', this.result)
} else {
const then = _ => {
const then = () => {
if (--entryCount === 0) {
this.emit('done', this.result)
}
Expand Down
10 changes: 5 additions & 5 deletions node_modules/ignore-walk/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "ignore-walk",
"version": "6.0.4",
"version": "6.0.5",
"description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.",
"main": "lib/index.js",
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.19.0",
"@npmcli/template-oss": "4.22.0",
"mutate-fs": "^2.1.1",
"tap": "^16.0.1"
},
"scripts": {
"test": "tap",
"posttest": "npm run lint",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"lintfix": "npm run lint -- --fix",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
Expand All @@ -31,7 +31,7 @@
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/npm/ignore-walk.git"
"url": "git+https://github.com/npm/ignore-walk.git"
},
"files": [
"bin/",
Expand All @@ -56,7 +56,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.19.0",
"version": "4.22.0",
"content": "scripts/template-oss",
"publish": "true"
}
Expand Down
9 changes: 5 additions & 4 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.22.0",
"front-matter": "^4.0.2",
"ignore-walk": "^6.0.1",
"ignore-walk": "^6.0.5",
"jsdom": "^24.0.0",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
Expand Down Expand Up @@ -6015,10 +6015,11 @@
}
},
"node_modules/ignore-walk": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz",
"integrity": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==",
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz",
"integrity": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==",
"inBundle": true,
"license": "ISC",
"dependencies": {
"minimatch": "^9.0.0"
},
Expand Down

0 comments on commit 552113e

Please sign in to comment.