@w5s/cspell-config 1.0.0-alpha.9 → 1.0.1

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.
@@ -5,6 +5,7 @@ camelcase
5
5
  circleci
6
6
  CODEOWNERS
7
7
  commitlint
8
+ datasource
8
9
  editorconfig
9
10
  esbuild
10
11
  esnext
package/dict/names.txt CHANGED
@@ -1,6 +1,7 @@
1
1
  dbaeumer
2
2
  espree
3
3
  jpolo
4
+ rubygems
4
5
  rushstack
5
6
  seatonjiang
6
7
  strictsoftware
package/lib/index.js CHANGED
@@ -62,7 +62,7 @@ const settings = {
62
62
  import: toArray(defaultSettings.import).filter((dict) => !excludeImport.has(dict)),
63
63
  ignorePaths: [
64
64
  ...toArray(defaultSettings.ignorePaths),
65
- 'CHANGELOG.md',
65
+ '**/CHANGELOG.md',
66
66
  '**/__snapshots__/**',
67
67
  // '**/.git/**',
68
68
  '**/.vscode/**',
@@ -74,8 +74,6 @@ const settings = {
74
74
  '**/renovate.json',
75
75
  '**/vscode-extension/**',
76
76
  '**/yarn.lock',
77
- '**/apps/*/CHANGELOG.md',
78
- '**/packages/*/CHANGELOG.md',
79
77
  'pnpm-lock.yaml',
80
78
  ],
81
79
  languageSettings: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/cspell-config",
3
- "version": "1.0.0-alpha.9",
3
+ "version": "1.0.1",
4
4
  "description": "CSpell configuration presets",
5
5
  "keywords": [
6
6
  "cspell"
@@ -47,30 +47,17 @@
47
47
  "prepare": "concurrently \"npm:prepare:*\" \":\"",
48
48
  "prepublishOnly": "npm run clean;npm run build",
49
49
  "spellcheck": "cspell --no-progress '**'",
50
- "test": "concurrently \"npm:test:*\" ",
51
- "test:src": "exit 0"
52
- },
53
- "jest": {
54
- "moduleNameMapper": {
55
- "^(\\.{1,2}/.*)\\.js$": "$1"
56
- },
57
- "preset": "es-jest",
58
- "testPathIgnorePatterns": [
59
- "/node_modules/",
60
- "/lib/",
61
- "/build/",
62
- "/.cache/",
63
- "/docs/",
64
- "/public/"
65
- ]
50
+ "test": "concurrently \"npm:test:*\" \":\"",
51
+ "test:src": "vitest run"
66
52
  },
67
53
  "dependencies": {
68
54
  "@cspell/cspell-bundled-dicts": "^6.0.0"
69
55
  },
70
56
  "devDependencies": {
71
- "@cspell/cspell-tools": "6.19.2",
72
- "@cspell/cspell-types": "6.19.2",
73
- "@jest/globals": "29.4.2"
57
+ "@cspell/cspell-tools": "6.28.0",
58
+ "@cspell/cspell-types": "6.28.0",
59
+ "vite": "4.1.4",
60
+ "vitest": "0.29.2"
74
61
  },
75
62
  "peerDependencies": {
76
63
  "cspell": "^6.0.0"
@@ -86,5 +73,5 @@
86
73
  "publishConfig": {
87
74
  "access": "public"
88
75
  },
89
- "gitHead": "6b74a881662f955fe5efbeef26ef46e06487c188"
76
+ "gitHead": "29d1aa4b31962b7ff3cf846b3fc374b5e2c2ecc2"
90
77
  }
package/src/index.ts CHANGED
@@ -60,7 +60,7 @@ const settings: AdvancedCSpellSettings = {
60
60
  import: toArray(defaultSettings.import).filter((dict) => !excludeImport.has(dict)),
61
61
  ignorePaths: [
62
62
  ...toArray(defaultSettings.ignorePaths),
63
- 'CHANGELOG.md',
63
+ '**/CHANGELOG.md',
64
64
  '**/__snapshots__/**',
65
65
  // '**/.git/**',
66
66
  '**/.vscode/**',
@@ -72,8 +72,6 @@ const settings: AdvancedCSpellSettings = {
72
72
  '**/renovate.json',
73
73
  '**/vscode-extension/**',
74
74
  '**/yarn.lock',
75
- '**/apps/*/CHANGELOG.md',
76
- '**/packages/*/CHANGELOG.md',
77
75
  'pnpm-lock.yaml',
78
76
  ],
79
77
  languageSettings: [