wxt 0.1.5 → 0.1.6
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.cjs +85 -57
- package/dist/index.cjs +82 -54
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +62 -34
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.cjs
CHANGED
|
@@ -328,15 +328,41 @@ function virtualEntrypoin(type, config) {
|
|
|
328
328
|
};
|
|
329
329
|
}
|
|
330
330
|
|
|
331
|
+
// src/core/vite-plugins/tsconfigPaths.ts
|
|
332
|
+
var import_vite_tsconfig_paths = __toESM(require("vite-tsconfig-paths"), 1);
|
|
333
|
+
function tsconfigPaths(config) {
|
|
334
|
+
const fn = typeof import_vite_tsconfig_paths.default === "function" ? import_vite_tsconfig_paths.default : import_vite_tsconfig_paths.default.default;
|
|
335
|
+
return fn({
|
|
336
|
+
root: config.root
|
|
337
|
+
});
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// src/core/vite-plugins/hmrLogger.ts
|
|
341
|
+
var import_path4 = require("path");
|
|
342
|
+
var import_picocolors = __toESM(require("picocolors"), 1);
|
|
343
|
+
function hmrLogger(config) {
|
|
344
|
+
return {
|
|
345
|
+
name: "wxt:hmr-logger",
|
|
346
|
+
apply: "serve",
|
|
347
|
+
handleHotUpdate(ctx) {
|
|
348
|
+
if (ctx.file.startsWith(config.srcDir) && !ctx.file.startsWith(config.wxtDir) && !ctx.file.endsWith(".html")) {
|
|
349
|
+
config.logger.info(
|
|
350
|
+
"Hot reload: " + import_picocolors.default.dim((0, import_path4.relative)(process.cwd(), ctx.file))
|
|
351
|
+
);
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
};
|
|
355
|
+
}
|
|
356
|
+
|
|
331
357
|
// src/core/utils/createFsCache.ts
|
|
332
358
|
var import_fs_extra3 = __toESM(require("fs-extra"), 1);
|
|
333
|
-
var
|
|
359
|
+
var import_path5 = require("path");
|
|
334
360
|
function createFsCache(wxtDir) {
|
|
335
|
-
const getPath = (key) => (0,
|
|
361
|
+
const getPath = (key) => (0, import_path5.resolve)(wxtDir, "cache", encodeURIComponent(key));
|
|
336
362
|
return {
|
|
337
363
|
async set(key, value) {
|
|
338
364
|
const path5 = getPath(key);
|
|
339
|
-
await (0, import_fs_extra3.ensureDir)((0,
|
|
365
|
+
await (0, import_fs_extra3.ensureDir)((0, import_path5.dirname)(path5));
|
|
340
366
|
await import_fs_extra3.default.writeFile(path5, value, "utf-8");
|
|
341
367
|
},
|
|
342
368
|
async get(key) {
|
|
@@ -480,6 +506,8 @@ async function getInternalConfig(config, command) {
|
|
|
480
506
|
virtualEntrypoin("content-script", finalConfig)
|
|
481
507
|
);
|
|
482
508
|
finalConfig.vite.plugins.push(devServerGlobals(finalConfig));
|
|
509
|
+
finalConfig.vite.plugins.push(tsconfigPaths(finalConfig));
|
|
510
|
+
finalConfig.vite.plugins.push(hmrLogger(finalConfig));
|
|
483
511
|
finalConfig.vite.define ??= {};
|
|
484
512
|
getGlobals(finalConfig).forEach((global) => {
|
|
485
513
|
finalConfig.vite.define[global.name] = JSON.stringify(global.value);
|
|
@@ -491,7 +519,7 @@ async function resolveManifestConfig(env, manifest) {
|
|
|
491
519
|
}
|
|
492
520
|
|
|
493
521
|
// src/index.ts
|
|
494
|
-
var
|
|
522
|
+
var import_picocolors4 = __toESM(require("picocolors"), 1);
|
|
495
523
|
var vite5 = __toESM(require("vite"), 1);
|
|
496
524
|
|
|
497
525
|
// src/core/utils/arrays.ts
|
|
@@ -595,11 +623,11 @@ var vite2 = __toESM(require("vite"), 1);
|
|
|
595
623
|
|
|
596
624
|
// src/core/utils/removeEmptyDirs.ts
|
|
597
625
|
var import_fs_extra4 = __toESM(require("fs-extra"), 1);
|
|
598
|
-
var
|
|
626
|
+
var import_path6 = __toESM(require("path"), 1);
|
|
599
627
|
async function removeEmptyDirs(dir) {
|
|
600
628
|
const files = await import_fs_extra4.default.readdir(dir);
|
|
601
629
|
for (const file of files) {
|
|
602
|
-
const filePath =
|
|
630
|
+
const filePath = import_path6.default.join(dir, file);
|
|
603
631
|
const stats = await import_fs_extra4.default.stat(filePath);
|
|
604
632
|
if (stats.isDirectory()) {
|
|
605
633
|
await removeEmptyDirs(filePath);
|
|
@@ -614,7 +642,7 @@ async function removeEmptyDirs(dir) {
|
|
|
614
642
|
// src/core/build/buildEntrypoints.ts
|
|
615
643
|
var import_fast_glob = __toESM(require("fast-glob"), 1);
|
|
616
644
|
var import_fs_extra5 = __toESM(require("fs-extra"), 1);
|
|
617
|
-
var
|
|
645
|
+
var import_path7 = require("path");
|
|
618
646
|
async function buildEntrypoints(groups, config) {
|
|
619
647
|
const steps = [];
|
|
620
648
|
for (const group of groups) {
|
|
@@ -706,9 +734,9 @@ async function copyPublicDirectory(config) {
|
|
|
706
734
|
return publicAssets;
|
|
707
735
|
const files = await (0, import_fast_glob.default)("**/*", { cwd: config.publicDir });
|
|
708
736
|
for (const file of files) {
|
|
709
|
-
const srcPath = (0,
|
|
710
|
-
const outPath = (0,
|
|
711
|
-
await import_fs_extra5.default.ensureDir((0,
|
|
737
|
+
const srcPath = (0, import_path7.resolve)(config.publicDir, file);
|
|
738
|
+
const outPath = (0, import_path7.resolve)(config.outDir, file);
|
|
739
|
+
await import_fs_extra5.default.ensureDir((0, import_path7.dirname)(outPath));
|
|
712
740
|
await import_fs_extra5.default.copyFile(srcPath, outPath);
|
|
713
741
|
publicAssets.push({
|
|
714
742
|
type: "asset",
|
|
@@ -722,7 +750,7 @@ async function copyPublicDirectory(config) {
|
|
|
722
750
|
}
|
|
723
751
|
|
|
724
752
|
// src/core/build/findEntrypoints.ts
|
|
725
|
-
var
|
|
753
|
+
var import_path9 = require("path");
|
|
726
754
|
var import_fs_extra7 = __toESM(require("fs-extra"), 1);
|
|
727
755
|
var import_picomatch = __toESM(require("picomatch"), 1);
|
|
728
756
|
var import_linkedom2 = require("linkedom");
|
|
@@ -732,7 +760,7 @@ var import_json5 = __toESM(require("json5"), 1);
|
|
|
732
760
|
var import_jiti = __toESM(require("jiti"), 1);
|
|
733
761
|
var import_unimport2 = require("unimport");
|
|
734
762
|
var import_fs_extra6 = __toESM(require("fs-extra"), 1);
|
|
735
|
-
var
|
|
763
|
+
var import_path8 = require("path");
|
|
736
764
|
var import_babel = __toESM(require("jiti/dist/babel"), 1);
|
|
737
765
|
async function importTsFile(path5, config) {
|
|
738
766
|
config.logger.debug("Loading file metadata:", path5);
|
|
@@ -754,7 +782,7 @@ async function importTsFile(path5, config) {
|
|
|
754
782
|
esmResolve: true,
|
|
755
783
|
interopDefault: true,
|
|
756
784
|
alias: {
|
|
757
|
-
"webextension-polyfill": (0,
|
|
785
|
+
"webextension-polyfill": (0, import_path8.resolve)(
|
|
758
786
|
config.root,
|
|
759
787
|
"node_modules/wxt/dist/virtual-modules/fake-browser.js"
|
|
760
788
|
)
|
|
@@ -786,7 +814,7 @@ async function findEntrypoints(config) {
|
|
|
786
814
|
const entrypoints = [];
|
|
787
815
|
await Promise.all(
|
|
788
816
|
relativePaths.map(async (relativePath) => {
|
|
789
|
-
const path5 = (0,
|
|
817
|
+
const path5 = (0, import_path9.resolve)(config.entrypointsDir, relativePath);
|
|
790
818
|
const matchingGlob = pathGlobs.find(
|
|
791
819
|
(glob3) => import_picomatch.default.isMatch(relativePath, glob3)
|
|
792
820
|
);
|
|
@@ -833,8 +861,8 @@ ${JSON.stringify(
|
|
|
833
861
|
if (withSameName) {
|
|
834
862
|
throw Error(
|
|
835
863
|
`Multiple entrypoints with the name "${entrypoint.name}" detected, but only one is allowed: ${[
|
|
836
|
-
(0,
|
|
837
|
-
(0,
|
|
864
|
+
(0, import_path9.relative)(config.root, withSameName.inputPath),
|
|
865
|
+
(0, import_path9.relative)(config.root, entrypoint.inputPath)
|
|
838
866
|
].join(", ")}`
|
|
839
867
|
);
|
|
840
868
|
}
|
|
@@ -923,7 +951,7 @@ async function getContentScriptEntrypoint(config, name, path5) {
|
|
|
923
951
|
type: "content-script",
|
|
924
952
|
name: getEntrypointName(config.entrypointsDir, path5),
|
|
925
953
|
inputPath: path5,
|
|
926
|
-
outputDir: (0,
|
|
954
|
+
outputDir: (0, import_path9.resolve)(config.outDir, "content-scripts"),
|
|
927
955
|
options
|
|
928
956
|
};
|
|
929
957
|
}
|
|
@@ -961,7 +989,7 @@ var PATH_GLOB_TO_TYPE_MAP = {
|
|
|
961
989
|
// src/core/build/generateTypesDir.ts
|
|
962
990
|
var import_unimport3 = require("unimport");
|
|
963
991
|
var import_fs_extra8 = __toESM(require("fs-extra"), 1);
|
|
964
|
-
var
|
|
992
|
+
var import_path10 = require("path");
|
|
965
993
|
async function generateTypesDir(entrypoints, config) {
|
|
966
994
|
await import_fs_extra8.default.ensureDir(config.typesDir);
|
|
967
995
|
const references = [];
|
|
@@ -972,7 +1000,7 @@ async function generateTypesDir(entrypoints, config) {
|
|
|
972
1000
|
await writeTsConfigFile(mainReference, config);
|
|
973
1001
|
}
|
|
974
1002
|
async function writeImportsDeclarationFile(config) {
|
|
975
|
-
const filePath = (0,
|
|
1003
|
+
const filePath = (0, import_path10.resolve)(config.typesDir, "imports.d.ts");
|
|
976
1004
|
const unimport2 = (0, import_unimport3.createUnimport)(getUnimportOptions(config));
|
|
977
1005
|
await unimport2.scanImportsFromDir(void 0, { cwd: config.srcDir });
|
|
978
1006
|
await import_fs_extra8.default.writeFile(
|
|
@@ -984,7 +1012,7 @@ async function writeImportsDeclarationFile(config) {
|
|
|
984
1012
|
return filePath;
|
|
985
1013
|
}
|
|
986
1014
|
async function writePathsDeclarationFile(entrypoints, config) {
|
|
987
|
-
const filePath = (0,
|
|
1015
|
+
const filePath = (0, import_path10.resolve)(config.typesDir, "paths.d.ts");
|
|
988
1016
|
const unions = entrypoints.map((entry) => {
|
|
989
1017
|
const path5 = getEntrypointBundlePath(
|
|
990
1018
|
entry,
|
|
@@ -1004,7 +1032,7 @@ async function writePathsDeclarationFile(entrypoints, config) {
|
|
|
1004
1032
|
return filePath;
|
|
1005
1033
|
}
|
|
1006
1034
|
async function writeGlobalsDeclarationFile(config) {
|
|
1007
|
-
const filePath = (0,
|
|
1035
|
+
const filePath = (0, import_path10.resolve)(config.typesDir, "globals.d.ts");
|
|
1008
1036
|
const globals = getGlobals(config);
|
|
1009
1037
|
await import_fs_extra8.default.writeFile(
|
|
1010
1038
|
filePath,
|
|
@@ -1021,14 +1049,14 @@ async function writeGlobalsDeclarationFile(config) {
|
|
|
1021
1049
|
}
|
|
1022
1050
|
async function writeMainDeclarationFile(references, config) {
|
|
1023
1051
|
const dir = config.wxtDir;
|
|
1024
|
-
const filePath = (0,
|
|
1052
|
+
const filePath = (0, import_path10.resolve)(dir, "wxt.d.ts");
|
|
1025
1053
|
await import_fs_extra8.default.writeFile(
|
|
1026
1054
|
filePath,
|
|
1027
1055
|
[
|
|
1028
1056
|
"// Generated by wxt",
|
|
1029
1057
|
`/// <reference types="vite/client" />`,
|
|
1030
1058
|
...references.map(
|
|
1031
|
-
(ref) => `/// <reference types="./${(0,
|
|
1059
|
+
(ref) => `/// <reference types="./${(0, import_path10.relative)(dir, ref)}" />`
|
|
1032
1060
|
)
|
|
1033
1061
|
].join("\n") + "\n"
|
|
1034
1062
|
);
|
|
@@ -1037,7 +1065,7 @@ async function writeMainDeclarationFile(references, config) {
|
|
|
1037
1065
|
async function writeTsConfigFile(mainReference, config) {
|
|
1038
1066
|
const dir = config.wxtDir;
|
|
1039
1067
|
await import_fs_extra8.default.writeFile(
|
|
1040
|
-
(0,
|
|
1068
|
+
(0, import_path10.resolve)(dir, "tsconfig.json"),
|
|
1041
1069
|
`{
|
|
1042
1070
|
"compilerOptions": {
|
|
1043
1071
|
"target": "ESNext",
|
|
@@ -1055,30 +1083,30 @@ async function writeTsConfigFile(mainReference, config) {
|
|
|
1055
1083
|
"skipLibCheck": true,
|
|
1056
1084
|
|
|
1057
1085
|
/* Aliases */
|
|
1058
|
-
"baseUrl": "${(0,
|
|
1086
|
+
"baseUrl": "${(0, import_path10.relative)(dir, config.root)}",
|
|
1059
1087
|
"paths": {
|
|
1060
1088
|
"@@": ["."],
|
|
1061
1089
|
"@@/*": ["./*"],
|
|
1062
1090
|
"~~": ["."],
|
|
1063
1091
|
"~~/*": ["./*"],
|
|
1064
|
-
"@": ["${(0,
|
|
1065
|
-
"@/*": ["${(0,
|
|
1066
|
-
"~": ["${(0,
|
|
1067
|
-
"~/*": ["${(0,
|
|
1092
|
+
"@": ["${(0, import_path10.relative)(config.root, config.srcDir)}"],
|
|
1093
|
+
"@/*": ["${(0, import_path10.relative)(config.root, config.srcDir)}/*"],
|
|
1094
|
+
"~": ["${(0, import_path10.relative)(config.root, config.srcDir)}"],
|
|
1095
|
+
"~/*": ["${(0, import_path10.relative)(config.root, config.srcDir)}/*"]
|
|
1068
1096
|
}
|
|
1069
1097
|
},
|
|
1070
1098
|
"include": [
|
|
1071
|
-
"${(0,
|
|
1072
|
-
"./${(0,
|
|
1099
|
+
"${(0, import_path10.relative)(dir, config.root)}/**/*",
|
|
1100
|
+
"./${(0, import_path10.relative)(dir, mainReference)}"
|
|
1073
1101
|
],
|
|
1074
|
-
"exclude": ["${(0,
|
|
1102
|
+
"exclude": ["${(0, import_path10.relative)(dir, config.outBaseDir)}"]
|
|
1075
1103
|
}`
|
|
1076
1104
|
);
|
|
1077
1105
|
}
|
|
1078
1106
|
|
|
1079
1107
|
// src/core/utils/manifest.ts
|
|
1080
1108
|
var import_fs_extra9 = __toESM(require("fs-extra"), 1);
|
|
1081
|
-
var
|
|
1109
|
+
var import_path11 = require("path");
|
|
1082
1110
|
|
|
1083
1111
|
// src/core/utils/ContentSecurityPolicy.ts
|
|
1084
1112
|
var ContentSecurityPolicy = class _ContentSecurityPolicy {
|
|
@@ -1127,7 +1155,7 @@ var ContentSecurityPolicy = class _ContentSecurityPolicy {
|
|
|
1127
1155
|
async function writeManifest(manifest, output, config) {
|
|
1128
1156
|
const str = config.mode === "production" ? JSON.stringify(manifest) : JSON.stringify(manifest, null, 2);
|
|
1129
1157
|
await import_fs_extra9.default.ensureDir(config.outDir);
|
|
1130
|
-
await import_fs_extra9.default.writeFile((0,
|
|
1158
|
+
await import_fs_extra9.default.writeFile((0, import_path11.resolve)(config.outDir, "manifest.json"), str, "utf-8");
|
|
1131
1159
|
output.publicAssets.unshift({
|
|
1132
1160
|
type: "asset",
|
|
1133
1161
|
fileName: "manifest.json",
|
|
@@ -1160,7 +1188,7 @@ async function generateMainfest(entrypoints, buildOutput, config) {
|
|
|
1160
1188
|
return manifest;
|
|
1161
1189
|
}
|
|
1162
1190
|
async function getPackageJson(config) {
|
|
1163
|
-
return await import_fs_extra9.default.readJson((0,
|
|
1191
|
+
return await import_fs_extra9.default.readJson((0, import_path11.resolve)(config.root, "package.json"));
|
|
1164
1192
|
}
|
|
1165
1193
|
function simplifyVersion(versionName) {
|
|
1166
1194
|
const version3 = /^((0|[1-9][0-9]{0,8})([.](0|[1-9][0-9]{0,8})){0,3}).*$/.exec(
|
|
@@ -1403,7 +1431,7 @@ function addHostPermission(manifest, hostPermission) {
|
|
|
1403
1431
|
}
|
|
1404
1432
|
|
|
1405
1433
|
// src/core/build.ts
|
|
1406
|
-
var
|
|
1434
|
+
var import_picocolors3 = __toESM(require("picocolors"), 1);
|
|
1407
1435
|
var vite3 = __toESM(require("vite"), 1);
|
|
1408
1436
|
var import_fs_extra11 = __toESM(require("fs-extra"), 1);
|
|
1409
1437
|
|
|
@@ -1453,7 +1481,7 @@ function formatDuration(duration) {
|
|
|
1453
1481
|
}
|
|
1454
1482
|
|
|
1455
1483
|
// src/core/log/printBuildSummary.ts
|
|
1456
|
-
var
|
|
1484
|
+
var import_path12 = __toESM(require("path"), 1);
|
|
1457
1485
|
|
|
1458
1486
|
// src/core/log/printTable.ts
|
|
1459
1487
|
function printTable(log, rows, gap = 2) {
|
|
@@ -1482,7 +1510,7 @@ function printTable(log, rows, gap = 2) {
|
|
|
1482
1510
|
}
|
|
1483
1511
|
|
|
1484
1512
|
// src/core/log/printBuildSummary.ts
|
|
1485
|
-
var
|
|
1513
|
+
var import_picocolors2 = __toESM(require("picocolors"), 1);
|
|
1486
1514
|
var import_fs_extra10 = __toESM(require("fs-extra"), 1);
|
|
1487
1515
|
var import_filesize = require("filesize");
|
|
1488
1516
|
async function printBuildSummary(output, config) {
|
|
@@ -1501,23 +1529,23 @@ async function printBuildSummary(output, config) {
|
|
|
1501
1529
|
const chunkRows = await Promise.all(
|
|
1502
1530
|
chunks.map(async (chunk, i) => {
|
|
1503
1531
|
const file = [
|
|
1504
|
-
(0,
|
|
1532
|
+
(0, import_path12.relative)(process.cwd(), config.outDir) + import_path12.default.sep,
|
|
1505
1533
|
chunk.fileName
|
|
1506
1534
|
];
|
|
1507
1535
|
const prefix = i === chunks.length - 1 ? " \u2514\u2500" : " \u251C\u2500";
|
|
1508
1536
|
const color = getChunkColor(chunk.fileName);
|
|
1509
|
-
const stats = await import_fs_extra10.default.lstat((0,
|
|
1537
|
+
const stats = await import_fs_extra10.default.lstat((0, import_path12.resolve)(config.outDir, chunk.fileName));
|
|
1510
1538
|
totalSize += stats.size;
|
|
1511
1539
|
const size = String((0, import_filesize.filesize)(stats.size));
|
|
1512
1540
|
return [
|
|
1513
|
-
`${
|
|
1514
|
-
|
|
1541
|
+
`${import_picocolors2.default.gray(prefix)} ${import_picocolors2.default.dim(file[0])}${color(file[1])}`,
|
|
1542
|
+
import_picocolors2.default.dim(size)
|
|
1515
1543
|
];
|
|
1516
1544
|
})
|
|
1517
1545
|
);
|
|
1518
1546
|
printTable(config.logger.log, chunkRows);
|
|
1519
1547
|
config.logger.log(
|
|
1520
|
-
`${
|
|
1548
|
+
`${import_picocolors2.default.cyan("\u03A3 Total size:")} ${String((0, import_filesize.filesize)(totalSize))}`
|
|
1521
1549
|
);
|
|
1522
1550
|
}
|
|
1523
1551
|
var DEFAULT_SORT_WEIGHT = 100;
|
|
@@ -1533,12 +1561,12 @@ function getChunkSortWeight(filename) {
|
|
|
1533
1561
|
([key]) => filename.endsWith(key)
|
|
1534
1562
|
)?.[1] ?? DEFAULT_SORT_WEIGHT;
|
|
1535
1563
|
}
|
|
1536
|
-
var DEFAULT_COLOR =
|
|
1564
|
+
var DEFAULT_COLOR = import_picocolors2.default.blue;
|
|
1537
1565
|
var CHUNK_COLORS = {
|
|
1538
|
-
".js.map":
|
|
1539
|
-
".html":
|
|
1540
|
-
".css":
|
|
1541
|
-
".js":
|
|
1566
|
+
".js.map": import_picocolors2.default.gray,
|
|
1567
|
+
".html": import_picocolors2.default.green,
|
|
1568
|
+
".css": import_picocolors2.default.magenta,
|
|
1569
|
+
".js": import_picocolors2.default.cyan
|
|
1542
1570
|
};
|
|
1543
1571
|
function getChunkColor(filename) {
|
|
1544
1572
|
return Object.entries(CHUNK_COLORS).find(([key]) => filename.endsWith(key))?.[1] ?? DEFAULT_COLOR;
|
|
@@ -1549,7 +1577,7 @@ async function buildInternal(config) {
|
|
|
1549
1577
|
const verb = config.command === "serve" ? "Pre-rendering" : "Building";
|
|
1550
1578
|
const target = `${config.browser}-mv${config.manifestVersion}`;
|
|
1551
1579
|
config.logger.info(
|
|
1552
|
-
`${verb} ${
|
|
1580
|
+
`${verb} ${import_picocolors3.default.cyan(target)} for ${import_picocolors3.default.cyan(config.mode)} with ${import_picocolors3.default.green(
|
|
1553
1581
|
`Vite ${vite3.version}`
|
|
1554
1582
|
)}`
|
|
1555
1583
|
);
|
|
@@ -1768,7 +1796,7 @@ function reloadHtmlPages(groups, server, config) {
|
|
|
1768
1796
|
}
|
|
1769
1797
|
|
|
1770
1798
|
// package.json
|
|
1771
|
-
var version2 = "0.1.
|
|
1799
|
+
var version2 = "0.1.6";
|
|
1772
1800
|
|
|
1773
1801
|
// src/core/utils/defineConfig.ts
|
|
1774
1802
|
function defineConfig(config) {
|
|
@@ -1811,14 +1839,14 @@ async function createServer2(config) {
|
|
|
1811
1839
|
const changes = detectDevChanges(fileChanges, server.currentOutput);
|
|
1812
1840
|
if (changes.type === "no-change")
|
|
1813
1841
|
return;
|
|
1814
|
-
|
|
1815
|
-
`Changed: ${Array.from(new Set(fileChanges.map((change) => change[1]))).map((file) =>
|
|
1842
|
+
internalConfig.logger.info(
|
|
1843
|
+
`Changed: ${Array.from(new Set(fileChanges.map((change) => change[1]))).map((file) => import_picocolors4.default.dim((0, import_node_path4.relative)(internalConfig.root, file))).join(", ")}`
|
|
1816
1844
|
);
|
|
1817
1845
|
const rebuiltNames = changes.rebuildGroups.flat().map((entry) => {
|
|
1818
|
-
return
|
|
1846
|
+
return import_picocolors4.default.cyan(
|
|
1819
1847
|
(0, import_node_path4.relative)(internalConfig.outDir, getEntrypointOutputFile(entry, ""))
|
|
1820
1848
|
);
|
|
1821
|
-
}).join(
|
|
1849
|
+
}).join(import_picocolors4.default.dim(", "));
|
|
1822
1850
|
internalConfig = await getLatestInternalConfig();
|
|
1823
1851
|
internalConfig.server = server;
|
|
1824
1852
|
const { output: newOutput } = await rebuild(
|