@w5s/cspell-config 1.0.8 → 1.1.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.
package/cspell-ext.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "name": "W5s default settings",
5
5
  "id": "w5s-default-json",
6
6
  "readonly": true,
7
- "import": ["./lib/index.js"]
7
+ "import": ["./dist/index.js"]
8
8
  }
@@ -68,6 +68,7 @@ const settings = {
68
68
  '**/.vscode/**',
69
69
  '**/*.snap',
70
70
  '**/lib/**',
71
+ '**/dist/**',
71
72
  '**/node_modules/**',
72
73
  '**/package.json',
73
74
  '**/package-lock.json',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/cspell-config",
3
- "version": "1.0.8",
3
+ "version": "1.1.0",
4
4
  "description": "CSpell configuration presets",
5
5
  "keywords": [
6
6
  "cspell"
@@ -20,25 +20,26 @@
20
20
  "exports": {
21
21
  ".": "./cspell-ext.json",
22
22
  "./cspell-ext.json": "./cspell-ext.json",
23
- "./lib/*": "./lib/*",
23
+ "./dist/*": "./dist/*",
24
24
  "./dict/*": "./dict/*"
25
25
  },
26
26
  "typings": "./index.d.ts",
27
27
  "files": [
28
28
  "cspell-ext.json",
29
- "dict/**/*",
30
- "lib/**/!(*.spec).d.ts",
31
- "lib/**/!(*.spec).d.ts.map",
32
- "lib/**/!(*.spec).js.map",
33
- "lib/**/!(*.spec).js",
34
- "src/**/!(*.spec).ts"
29
+ "dict/",
30
+ "dist/",
31
+ "src/",
32
+ "index.js",
33
+ "index.d.ts",
34
+ "!**/*.spec.*",
35
+ "!**/__tests__/**"
35
36
  ],
36
37
  "scripts": {
37
38
  "__build:dict": "cd dict;cspell-tools-cli compile filetypes.txt",
38
39
  "build": "concurrently \"npm:build:*\" \":\"",
39
40
  "build:tsc": "tsc -b tsconfig.build.json",
40
41
  "clean": "concurrently \"npm:clean:*\" \":\"",
41
- "clean:tsc": "rm -rf lib",
42
+ "clean:tsc": "rm -rf dist",
42
43
  "docs": "node ../../markdown.mjs",
43
44
  "format": "concurrently \"npm:format:*\" \":\"",
44
45
  "format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
@@ -56,8 +57,8 @@
56
57
  "devDependencies": {
57
58
  "@cspell/cspell-tools": "6.31.1",
58
59
  "@cspell/cspell-types": "6.31.1",
59
- "vite": "4.3.5",
60
- "vitest": "0.31.0"
60
+ "vite": "4.3.9",
61
+ "vitest": "0.32.4"
61
62
  },
62
63
  "peerDependencies": {
63
64
  "cspell": "^6.0.0"
@@ -73,5 +74,5 @@
73
74
  "publishConfig": {
74
75
  "access": "public"
75
76
  },
76
- "gitHead": "5913801bce7442cfeb53292901eb5ea3479bb878"
77
+ "gitHead": "d1f8476f515b7be923ace0dba9ef86571f08747b"
77
78
  }
package/src/index.ts CHANGED
@@ -66,6 +66,7 @@ const settings: AdvancedCSpellSettings = {
66
66
  '**/.vscode/**',
67
67
  '**/*.snap',
68
68
  '**/lib/**',
69
+ '**/dist/**',
69
70
  '**/node_modules/**',
70
71
  '**/package.json',
71
72
  '**/package-lock.json',
File without changes