Skip to content

Commit f1c9268

Browse files
ci: Workflow Bot -- Update ALL Dependencies (main) (#6906)
Co-authored-by: Jason3S <[email protected]> Co-authored-by: Jason Dent <[email protected]>
1 parent 90ba557 commit f1c9268

File tree

8 files changed

+198
-196
lines changed

8 files changed

+198
-196
lines changed

examples/dynamic-dictionaries/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"private": true,
44
"dependencies": {
55
"cspell": "workspace:*",
6-
"tinyglobby": "^0.2.10"
6+
"tinyglobby": "^0.2.11"
77
}
88
}

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"@swc-node/register": "^1.10.9",
110110
"@tsconfig/node18": "^18.2.4",
111111
"@types/node": "^18.19.76",
112-
"@vitest/coverage-istanbul": "^3.0.5",
112+
"@vitest/coverage-istanbul": "^3.0.6",
113113
"conventional-changelog-conventionalcommits": "^8.0.0",
114114
"eslint": "^9.20.1",
115115
"eslint-plugin-n": "^17.15.1",
@@ -128,8 +128,8 @@
128128
"tslib": "^2.8.1",
129129
"tsup": "^8.3.6",
130130
"typescript": "~5.7.3",
131-
"typescript-eslint": "^8.24.0",
131+
"typescript-eslint": "^8.24.1",
132132
"vite": "^6.1.0",
133-
"vitest": "^3.0.5"
133+
"vitest": "^3.0.6"
134134
}
135135
}

packages/cspell-eslint-plugin/fixtures/simple/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"@cspell/eslint-plugin": "workspace:*",
1616
"@eslint/js": "^9.20.0",
1717
"eslint": "^9.20.1",
18-
"typescript-eslint": "^8.24.0"
18+
"typescript-eslint": "^8.24.1"
1919
}
2020
}

packages/cspell-eslint-plugin/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,21 @@
8484
"@eslint/js": "~9.19.0",
8585
"@types/estree": "^1.0.6",
8686
"@types/mocha": "^10.0.10",
87-
"@typescript-eslint/parser": "^8.24.0",
88-
"@typescript-eslint/types": "^8.24.0",
87+
"@typescript-eslint/parser": "^8.24.1",
88+
"@typescript-eslint/types": "^8.24.1",
8989
"eslint": "~9.19.0",
9090
"eslint-plugin-jsonc": "^2.19.1",
9191
"eslint-plugin-mdx": "^3.1.5",
9292
"eslint-plugin-n": "^17.15.1",
9393
"eslint-plugin-react": "^7.37.4",
9494
"eslint-plugin-simple-import-sort": "^12.1.1",
95-
"eslint-plugin-yml": "^1.16.0",
95+
"eslint-plugin-yml": "^1.17.0",
9696
"globals": "^15.15.0",
9797
"jsonc-eslint-parser": "^2.4.0",
9898
"mocha": "^11.1.0",
9999
"ts-json-schema-generator": "^2.3.0",
100100
"typescript": "~5.7.3",
101-
"typescript-eslint": "^8.24.0",
101+
"typescript-eslint": "^8.24.1",
102102
"yaml-eslint-parser": "^1.2.3"
103103
},
104104
"dependencies": {

packages/cspell/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"file-entry-cache": "^9.1.0",
9999
"get-stdin": "^9.0.0",
100100
"semver": "^7.7.1",
101-
"tinyglobby": "^0.2.10"
101+
"tinyglobby": "^0.2.11"
102102
},
103103
"engines": {
104104
"node": ">=18"

packages/cspell/src/app/util/glob.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ const defaultExcludeGlobs = ['node_modules/**'];
3232
*/
3333
export async function globP(pattern: string | string[], options?: GlobOptions): Promise<string[]> {
3434
const cwd = options?.root || options?.cwd || process.cwd();
35-
const ignore = typeof options?.ignore === 'string' ? [options.ignore] : options?.ignore;
35+
const ignoreRaw = typeof options?.ignore === 'string' ? [options.ignore] : options?.ignore;
36+
const ignore = ignoreRaw?.filter((g) => !g.startsWith('../'));
3637
const onlyFiles = options?.nodir;
3738
const dot = options?.dot;
3839
const patterns = typeof pattern === 'string' ? [pattern] : pattern;
@@ -44,6 +45,7 @@ export async function globP(pattern: string | string[], options?: GlobOptions):
4445
absolute: true,
4546
followSymbolicLinks: false,
4647
expandDirectories: false,
48+
// debug: true,
4749
});
4850

4951
const compare = new Intl.Collator('en').compare;

0 commit comments

Comments
 (0)