@d1g1tal/tsbuild 1.0.1 → 1.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.
- package/dist/{74AUVQXS.js → 4GEJO7YZ.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/tsbuild.js +2 -2
- package/package.json +1 -1
|
@@ -1869,7 +1869,7 @@ var _TypeScriptProject = class _TypeScriptProject {
|
|
|
1869
1869
|
return Files.empty(this.buildConfiguration.outDir);
|
|
1870
1870
|
}
|
|
1871
1871
|
async build() {
|
|
1872
|
-
Logger.header(`\u{1F680} tsbuild v${"1.0.
|
|
1872
|
+
Logger.header(`\u{1F680} tsbuild v${"1.0.2"}${this.configuration.compilerOptions.incremental ? " [incremental]" : ""}`);
|
|
1873
1873
|
try {
|
|
1874
1874
|
const processes = [];
|
|
1875
1875
|
const filesWereEmitted = await this.typeCheck();
|
package/dist/index.js
CHANGED
package/dist/tsbuild.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
BuildError,
|
|
4
4
|
TypeScriptProject
|
|
5
|
-
} from "./
|
|
5
|
+
} from "./4GEJO7YZ.js";
|
|
6
6
|
import "./44KSX2XO.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.0.
|
|
33
|
+
console.log("1.0.2");
|
|
34
34
|
process.exit(0);
|
|
35
35
|
}
|
|
36
36
|
var typeScriptOptions = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d1g1tal/tsbuild",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"packageManager": "pnpm@10.29.3",
|
|
5
5
|
"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.",
|
|
6
6
|
"type": "module",
|