cspell-lib 7.3.8 → 7.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,7 +24,7 @@ export const languageExtensionDefinitions = [
24
24
  { id: 'css', extensions: ['.css'] },
25
25
  { id: 'dhall', extensions: ['.dhall'] },
26
26
  { id: 'diff', extensions: ['.diff', '.patch', '.rej'] },
27
- { id: 'dockerfile', extensions: ['.dockerfile'], filenames: ['Dockerfile'] },
27
+ { id: 'dockerfile', extensions: ['.dockerfile'], filenames: ['Dockerfile', 'dockerfile'] },
28
28
  { id: 'elixir', extensions: ['.ex', '.exs'] },
29
29
  { id: 'fsharp', extensions: ['.fs', '.fsi', '.fsx', '.fsscript'] },
30
30
  { id: 'go', extensions: ['.go'] },
@@ -51,7 +51,7 @@ export const languageExtensionDefinitions = [
51
51
  { id: 'less', extensions: ['.less'] },
52
52
  { id: 'literate haskell', extensions: ['.lhs'] },
53
53
  { id: 'lua', extensions: ['.lua'] },
54
- { id: 'makefile', extensions: ['.mk'] },
54
+ { id: 'makefile', extensions: ['.mk'], filenames: ['makefile'] },
55
55
  { id: 'markdown', extensions: ['.md', '.mdown', '.markdown', '.markdn'] },
56
56
  { id: 'mdx', extensions: ['.mdx'] },
57
57
  { id: 'monkeyc', extensions: ['.mc', '.mb'] },
@@ -14,7 +14,6 @@ const testNodeModules = /^node_modules\//;
14
14
  * @param relativeTo absolute path
15
15
  */
16
16
  export function resolveFile(filename, relativeTo) {
17
- filename.startsWith('@cspell/cspell-json') && console.warn('%o', { filename, relativeTo });
18
17
  filename = filename.replace(/^~/, os.homedir());
19
18
  const steps = [
20
19
  { filename, fn: tryUrl },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-lib",
3
- "version": "7.3.8",
3
+ "version": "7.3.9",
4
4
  "description": "A library of useful functions used across various cspell tools.",
5
5
  "type": "module",
6
6
  "types": "dist/esm/index.d.ts",
@@ -56,21 +56,21 @@
56
56
  },
57
57
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
58
58
  "dependencies": {
59
- "@cspell/cspell-bundled-dicts": "7.3.8",
60
- "@cspell/cspell-pipe": "7.3.8",
61
- "@cspell/cspell-resolver": "7.3.8",
62
- "@cspell/cspell-types": "7.3.8",
63
- "@cspell/dynamic-import": "7.3.8",
64
- "@cspell/strong-weak-map": "7.3.8",
59
+ "@cspell/cspell-bundled-dicts": "7.3.9",
60
+ "@cspell/cspell-pipe": "7.3.9",
61
+ "@cspell/cspell-resolver": "7.3.9",
62
+ "@cspell/cspell-types": "7.3.9",
63
+ "@cspell/dynamic-import": "7.3.9",
64
+ "@cspell/strong-weak-map": "7.3.9",
65
65
  "clear-module": "^4.1.2",
66
66
  "comment-json": "^4.2.3",
67
67
  "configstore": "^6.0.0",
68
68
  "cosmiconfig": "8.0.0",
69
- "cspell-dictionary": "7.3.8",
70
- "cspell-glob": "7.3.8",
71
- "cspell-grammar": "7.3.8",
72
- "cspell-io": "7.3.8",
73
- "cspell-trie-lib": "7.3.8",
69
+ "cspell-dictionary": "7.3.9",
70
+ "cspell-glob": "7.3.9",
71
+ "cspell-grammar": "7.3.9",
72
+ "cspell-io": "7.3.9",
73
+ "cspell-trie-lib": "7.3.9",
74
74
  "fast-equals": "^5.0.1",
75
75
  "find-up": "^6.3.0",
76
76
  "gensequence": "^6.0.0",
@@ -83,17 +83,17 @@
83
83
  "node": ">=16"
84
84
  },
85
85
  "devDependencies": {
86
- "@cspell/dict-cpp": "^5.0.8",
86
+ "@cspell/dict-cpp": "^5.0.9",
87
87
  "@cspell/dict-csharp": "^4.0.2",
88
88
  "@cspell/dict-css": "^4.0.12",
89
89
  "@cspell/dict-fa-ir": "^3.0.0",
90
90
  "@cspell/dict-fr-fr": "^2.2.2",
91
91
  "@cspell/dict-html": "^4.0.5",
92
- "@cspell/dict-nl-nl": "^2.2.10",
93
- "@cspell/dict-python": "^4.1.9",
94
- "@types/configstore": "^6.0.0",
92
+ "@cspell/dict-nl-nl": "^2.3.0",
93
+ "@cspell/dict-python": "^4.1.10",
94
+ "@types/configstore": "^6.0.2",
95
95
  "cspell-dict-nl-nl": "^1.1.2",
96
96
  "lorem-ipsum": "^2.0.8"
97
97
  },
98
- "gitHead": "6717f5726b74c695d9023dbccf6f7e8a7ac6361f"
98
+ "gitHead": "77c7fb3ffd80a626ec07d704cefcaa21d62fd460"
99
99
  }