coalesce-mcp 6.0.1 → 6.0.2

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.
@@ -33,9 +33,9 @@ jobs:
33
33
  dotnet-quality: preview
34
34
 
35
35
  - name: Use Node.js
36
- uses: actions/setup-node@v5
36
+ uses: actions/setup-node@v6
37
37
  with:
38
- node-version: 22.x
38
+ node-version: 24.x
39
39
 
40
40
  - name: npm ci
41
41
  run: npm ci
@@ -35,7 +35,7 @@
35
35
  "typescript": "5.9.3",
36
36
  "unplugin-auto-import": "^20.2.0",
37
37
  "unplugin-vue-components": "^29.1.0",
38
- "vite": "^7.1.8",
38
+ "vite": "^7.1.11",
39
39
  "vite-plugin-vuetify": "^2.1.2",
40
40
  "vitest": "^3.2.4",
41
41
  "vue-tsc": "^3.1.0"
@@ -5637,10 +5637,11 @@
5637
5637
  "dev": true
5638
5638
  },
5639
5639
  "node_modules/vite": {
5640
- "version": "7.1.8",
5641
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.8.tgz",
5642
- "integrity": "sha512-oBXvfSHEOL8jF+R9Am7h59Up07kVVGH1NrFGFoEG6bPDZP3tGpQhvkBpy5x7U6+E6wZCu9OihsWgJqDbQIm8LQ==",
5640
+ "version": "7.1.11",
5641
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.11.tgz",
5642
+ "integrity": "sha512-uzcxnSDVjAopEUjljkWh8EIrg6tlzrjFUfMcR1EVsRDGwf/ccef0qQPRyOrROwhrTDaApueq+ja+KLPlzR/zdg==",
5643
5643
  "devOptional": true,
5644
+ "license": "MIT",
5644
5645
  "dependencies": {
5645
5646
  "esbuild": "^0.25.0",
5646
5647
  "fdir": "^6.5.0",
@@ -40,7 +40,7 @@
40
40
  "typescript": "5.9.3",
41
41
  "unplugin-auto-import": "^20.2.0",
42
42
  "unplugin-vue-components": "^29.1.0",
43
- "vite": "^7.1.8",
43
+ "vite": "^7.1.11",
44
44
  "vite-plugin-vuetify": "^2.1.2",
45
45
  "vitest": "^3.2.4",
46
46
  "vue-tsc": "^3.1.0"
@@ -34,6 +34,6 @@ a {
34
34
  .v-field__outline__end,
35
35
  .v-field__outline__notch::before,
36
36
  .v-field__outline__notch::after {
37
- border-style: dashed;
37
+ border-style: dashed !important;
38
38
  }
39
39
  }
@@ -2,8 +2,9 @@
2
2
  "compilerOptions": {
3
3
  "composite": true,
4
4
  "allowSyntheticDefaultImports": true,
5
- "module": "esnext",
6
- "moduleResolution": "node",
5
+ "skipLibCheck": true,
6
+ "module": "nodenext",
7
+ "moduleResolution": "nodenext",
7
8
  "types": ["node", "vitest"]
8
9
  },
9
10
  "include": ["vite.config.ts"],
@@ -91,17 +91,6 @@ export default defineConfig({
91
91
  },
92
92
  },
93
93
 
94
- css: {
95
- preprocessorOptions: {
96
- scss: {
97
- api: "modern",
98
- },
99
- sass: {
100
- api: "modern",
101
- },
102
- },
103
- },
104
-
105
94
  test: {
106
95
  globals: true,
107
96
  environment: "jsdom",
@@ -20,7 +20,7 @@ steps:
20
20
 
21
21
  - task: UseNode@1
22
22
  inputs:
23
- version: "22.x"
23
+ version: "24.x"
24
24
 
25
25
  - task: Npm@1
26
26
  displayName: npm ci
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coalesce-mcp",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "MCP server for IntelliTect's Coalesce framework.",
5
5
  "repository": "https://github.com/IntelliTect/Coalesce",
6
6
  "author": "IntelliTect",