@eclipse-glsp/cli 2.8.0-next.12 → 2.8.0-next.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/cli",
3
- "version": "2.8.0-next.12",
3
+ "version": "2.8.0-next.16",
4
4
  "description": "CLI Tooling & scripts for GLSP components",
5
5
  "homepage": "https://www.eclipse.org/glsp/",
6
6
  "bugs": "https://github.com/eclipse-glsp/glsp/issues",
@@ -34,7 +34,8 @@
34
34
  "minimatch": "^10.2.5",
35
35
  "open": "^11.0.0",
36
36
  "semver": "^7.7.2",
37
- "yaml": "^2.8.0"
37
+ "yaml": "^2.8.0",
38
+ "@eclipse-glsp/config-test": "2.8.0-next.16"
38
39
  },
39
40
  "publishConfig": {
40
41
  "access": "public"
@@ -49,11 +50,11 @@
49
50
  "lint": "eslint --ext .ts,.tsx ./src",
50
51
  "lint:ci": "pnpm lint -o eslint.xml -f checkstyle",
51
52
  "start": "node dist/cli.js",
52
- "test": "mocha --config .mocharc.json",
53
+ "test": "vitest run",
53
54
  "test:all": "pnpm test && pnpm test:e2e",
54
- "test:ci": "pnpm test --reporter mocha-ctrf-json-reporter",
55
- "test:coverage": "nyc pnpm test",
56
- "test:e2e": "pnpm build && mocha --config .mocharc.e2e.json",
55
+ "test:coverage": "vitest run --coverage",
56
+ "test:e2e": "pnpm build && vitest run --config vite.config.e2e.ts",
57
+ "test:watch": "vitest",
57
58
  "watch": "node esbuild.js --watch",
58
59
  "watch:tsc": "tsc --watch"
59
60
  }