@d1g1tal/tsbuild 1.7.4 → 1.7.5

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/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [1.7.5](https://github.com/D1g1talEntr0py/tsbuild/compare/v1.7.4...v1.7.5) (2026-04-07)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update vitest to latest to resolve CVE-2026-39363 (4bd805572667f2b5e778c19ac70e5971e27f0c08)
6
+ Updates vitest to the latest version to mitigate CVE-2026-39363 inherently through the natural dependency updates.
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **deps:** enforce latest esbuild and vite versions (2894d8dea77f3c8743854cdf56d839705ab604f8)
12
+ Overrides esbuild and vite transient dependencies. Ensures vitest allows the use of the latest esbuild version, as oxc does not support typescript decorators.
13
+
1
14
  ## [1.7.4](https://github.com/D1g1talEntr0py/tsbuild/compare/v1.7.3...v1.7.4) (2026-04-06)
2
15
 
3
16
  ### Bug Fixes
@@ -2137,7 +2137,7 @@ var _TypeScriptProject = class _TypeScriptProject {
2137
2137
  return Files.empty(this.buildConfiguration.outDir);
2138
2138
  }
2139
2139
  async build() {
2140
- Logger.header(`${tsLogo} tsbuild v${"1.7.4"}${this.configuration.compilerOptions.incremental && this.configuration.buildCache?.isValid() ? " [incremental]" : ""}`);
2140
+ Logger.header(`${tsLogo} tsbuild v${"1.7.5"}${this.configuration.compilerOptions.incremental && this.configuration.buildCache?.isValid() ? " [incremental]" : ""}`);
2141
2141
  try {
2142
2142
  const processes = [];
2143
2143
  const filesWereEmitted = await this.typeCheck();
package/dist/tsbuild.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  BuildError,
4
4
  TypeScriptProject
5
- } from "./HRIICYC4.js";
5
+ } from "./5BZX3OK7.js";
6
6
  import "./JKGYA2AW.js";
7
7
 
8
8
  // src/tsbuild.ts
@@ -30,7 +30,7 @@ if (help) {
30
30
  process.exit(0);
31
31
  }
32
32
  if (version) {
33
- console.log("1.7.4");
33
+ console.log("1.7.5");
34
34
  process.exit(0);
35
35
  }
36
36
  var typeScriptOptions = {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  TypeScriptProject
3
- } from "./HRIICYC4.js";
3
+ } from "./5BZX3OK7.js";
4
4
  import "./JKGYA2AW.js";
5
5
  export {
6
6
  TypeScriptProject
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@d1g1tal/tsbuild",
3
3
  "author": "D1g1talEntr0py",
4
- "version": "1.7.4",
4
+ "version": "1.7.5",
5
5
  "license": "MIT",
6
6
  "description": "A fast, ESM-only TypeScript build tool combining the TypeScript API for type checking and declaration generation, esbuild for bundling, and SWC for decorator metadata.",
7
7
  "homepage": "https://github.com/D1g1talEntr0py/tsbuild#readme",
@@ -53,7 +53,7 @@
53
53
  "@types/node": "^25.5.2",
54
54
  "@typescript-eslint/eslint-plugin": "^8.58.0",
55
55
  "@typescript-eslint/parser": "^8.58.0",
56
- "@vitest/coverage-v8": "^4.1.2",
56
+ "@vitest/coverage-v8": "^4.1.3",
57
57
  "eslint": "^10.2.0",
58
58
  "eslint-plugin-jsdoc": "^62.9.0",
59
59
  "fs-monkey": "^1.1.0",
@@ -61,7 +61,7 @@
61
61
  "tsx": "^4.21.0",
62
62
  "typescript": "^6.0.2",
63
63
  "typescript-eslint": "^8.58.0",
64
- "vitest": "^4.1.2"
64
+ "vitest": "^4.1.3"
65
65
  },
66
66
  "peerDependencies": {
67
67
  "typescript": ">=5.6.3"