bunup 0.16.16 → 0.16.17
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/cli/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
build,
|
|
5
5
|
processLoadedConfigs,
|
|
6
6
|
resolveBuildOptions
|
|
7
|
-
} from "../shared/bunup-
|
|
7
|
+
} from "../shared/bunup-ze2fw5ca.js";
|
|
8
8
|
import {
|
|
9
9
|
BunupBuildError,
|
|
10
10
|
BunupCLIError,
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
import { loadConfig } from "coffi";
|
|
28
28
|
import pc4 from "picocolors";
|
|
29
29
|
// packages/bunup/package.json
|
|
30
|
-
var version = "0.16.
|
|
30
|
+
var version = "0.16.17";
|
|
31
31
|
|
|
32
32
|
// packages/bunup/src/printer/print-build-report.ts
|
|
33
33
|
import { promisify } from "util";
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -461,13 +461,6 @@ async function build(userOptions, rootDir = process.cwd()) {
|
|
|
461
461
|
}
|
|
462
462
|
throw new BunupBuildError(formatInvalidEntryPointsError(entryArray));
|
|
463
463
|
}
|
|
464
|
-
console.log("");
|
|
465
|
-
console.log(`${options.name ? ` ${pc2.bgBlueBright(` ${options.name} `)} ` : " "}${logger.formatMessage({
|
|
466
|
-
message: formatListWithAnd(entrypoints),
|
|
467
|
-
muted: true,
|
|
468
|
-
noIcon: true
|
|
469
|
-
})}`);
|
|
470
|
-
console.log("");
|
|
471
464
|
const buildOutputFiles = [];
|
|
472
465
|
const absoluteEntrypoints = entrypoints.map((file) => `${rootDir}/${file}`);
|
|
473
466
|
const resolvedDefine = getResolvedDefine(options.define, options.env);
|
|
@@ -620,6 +613,13 @@ async function build(userOptions, rootDir = process.cwd()) {
|
|
|
620
613
|
if (options.onSuccess) {
|
|
621
614
|
await executeOnSuccess(options.onSuccess, options, ac.signal);
|
|
622
615
|
}
|
|
616
|
+
console.log("");
|
|
617
|
+
console.log(`${options.name ? ` ${pc2.bgBlueBright(` ${options.name} `)} ` : " "}${logger.formatMessage({
|
|
618
|
+
message: formatListWithAnd(entrypoints),
|
|
619
|
+
muted: true,
|
|
620
|
+
noIcon: true
|
|
621
|
+
})}`);
|
|
622
|
+
console.log("");
|
|
623
623
|
return buildResult;
|
|
624
624
|
}
|
|
625
625
|
|