cspell-lib 6.0.0 → 6.1.0-alpha.0

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 @@ exports.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'] },
27
+ { id: 'dockerfile', extensions: ['.dockerfile'], filenames: ['Dockerfile'] },
28
28
  { id: 'elixir', extensions: ['.ex', '.exs'] },
29
29
  { id: 'fsharp', extensions: ['.fs', '.fsi', '.fsx', '.fsscript'] },
30
30
  { id: 'go', extensions: ['.go'] },
@@ -46,7 +46,7 @@ exports.languageExtensionDefinitions = [
46
46
  extensions: ['.json', '.jsonc', '.bowerrc', '.jshintrc', '.jscsrc', '.eslintrc', '.babelrc', '.webmanifest'],
47
47
  },
48
48
  { id: 'jsonc', extensions: ['.jsonc'] },
49
- { id: 'jsonc', extensions: [], filenames: ['.code-workspace'] },
49
+ { id: 'jsonc', extensions: ['.code-workspace'], filenames: ['.code-workspace'] },
50
50
  { id: 'jungle', extensions: ['.jungle'] },
51
51
  { id: 'less', extensions: ['.less'] },
52
52
  { id: 'literate haskell', extensions: ['.lhs'] },
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  declare type Console = typeof console;
3
4
  export interface Logger {
4
5
  log: Console['log'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-lib",
3
- "version": "6.0.0",
3
+ "version": "6.1.0-alpha.0",
4
4
  "description": "A library of useful functions used across various cspell tools.",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -48,17 +48,17 @@
48
48
  },
49
49
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
50
50
  "dependencies": {
51
- "@cspell/cspell-bundled-dicts": "^6.0.0",
52
- "@cspell/cspell-pipe": "^6.0.0",
53
- "@cspell/cspell-types": "^6.0.0",
51
+ "@cspell/cspell-bundled-dicts": "^6.1.0-alpha.0",
52
+ "@cspell/cspell-pipe": "^6.1.0-alpha.0",
53
+ "@cspell/cspell-types": "^6.1.0-alpha.0",
54
54
  "clear-module": "^4.1.2",
55
55
  "comment-json": "^4.2.2",
56
56
  "configstore": "^5.0.1",
57
57
  "cosmiconfig": "^7.0.1",
58
- "cspell-glob": "^6.0.0",
59
- "cspell-io": "^6.0.0",
60
- "cspell-trie-lib": "^6.0.0",
61
- "fast-equals": "^3.0.2",
58
+ "cspell-glob": "^6.1.0-alpha.0",
59
+ "cspell-io": "^6.1.0-alpha.0",
60
+ "cspell-trie-lib": "^6.1.0-alpha.0",
61
+ "fast-equals": "^3.0.3",
62
62
  "find-up": "^5.0.0",
63
63
  "fs-extra": "^10.1.0",
64
64
  "gensequence": "^3.1.1",
@@ -83,14 +83,14 @@
83
83
  "@types/configstore": "^5.0.1",
84
84
  "@types/fs-extra": "^9.0.13",
85
85
  "@types/jest": "^27.5.1",
86
- "@types/node": "^17.0.35",
86
+ "@types/node": "^17.0.36",
87
87
  "cspell-dict-nl-nl": "^1.1.2",
88
88
  "jest": "^28.1.0",
89
89
  "lorem-ipsum": "^2.0.4",
90
90
  "rimraf": "^3.0.2",
91
- "rollup": "^2.74.1",
92
- "rollup-plugin-dts": "^4.2.1",
93
- "ts-jest": "^28.0.2"
91
+ "rollup": "^2.75.0",
92
+ "rollup-plugin-dts": "^4.2.2",
93
+ "ts-jest": "^28.0.3"
94
94
  },
95
- "gitHead": "7fd3e4ff8738a84d0aa48b9a9d4581b5efe50bea"
95
+ "gitHead": "67ce60164435b86840b37ab7584e98083af58c9c"
96
96
  }