@tsed/cli-plugin-vitest 6.1.8 → 6.1.9

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.
@@ -15,7 +15,6 @@ let CliPluginVitestModule = class CliPluginVitestModule {
15
15
  addScripts() {
16
16
  const runtime = this.runtimes.get();
17
17
  this.packageJson.addScripts({
18
- test: `${runtime.run("test:lint")} && ${runtime.run("test:coverage")}`,
19
18
  "test:unit": "cross-env NODE_ENV=test vitest run",
20
19
  "test:watch": "cross-env NODE_ENV=test vitest",
21
20
  "test:coverage": `cross-env NODE_ENV=test vitest run --coverage`
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tsed/cli-plugin-vitest",
3
3
  "description": "Ts.ED CLI plugin. Add Jest support",
4
- "version": "6.1.8",
4
+ "version": "6.1.9",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "source": "./src/index.ts",
@@ -21,9 +21,9 @@
21
21
  "test:ci": "vitest run --coverage.thresholds.autoUpdate=true"
22
22
  },
23
23
  "devDependencies": {
24
- "@tsed/cli": "6.1.8",
25
- "@tsed/cli-core": "6.1.8",
26
- "@tsed/typescript": "6.1.8",
24
+ "@tsed/cli": "6.1.9",
25
+ "@tsed/cli-core": "6.1.9",
26
+ "@tsed/typescript": "6.1.9",
27
27
  "cross-env": "7.0.3",
28
28
  "typescript": "5.6.2",
29
29
  "vitest": "2.1.1"