You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node-stye-text has conflicts with interopDefault of vitest and jiti, and we actually do not need the chained calls it provides, so it is replaced with node:util
this.logger.info(`Building version ${styleText.blue(version)} to ${styleText.blue(dist)} at ${styleText.blue(this.buildTime)} in ${styleText.blue(process.env.NODE_ENV)} mode.`);
32
+
this.logger.info(`Building version ${styleText("blue",version)} to ${styleText("blue",dist)} at ${styleText("blue",this.buildTime)} in ${styleText("blue",process.env.NODE_ENV)} mode.`);
logger.debug(`Pref key '${styleText.blue(key)}' is already starts with '${prefix}', skip prefixing it.`);
70
+
logger.debug(`Pref key '${styleText("blue",key)}' is already starts with '${prefix}', skip prefixing it.`);
71
71
continue;
72
72
}
73
73
elseif(key.startsWith("extensions.")){
74
-
logger.warn(`Pref key '${styleText.blue(key)}' in ${styleText.gray(path)} starts with 'extensions.' but not '${styleText.blue(prefix)}', skip prefixing it.`);
74
+
logger.warn(`Pref key '${styleText("blue",key)}' in ${styleText("gray",path)} starts with 'extensions.' but not '${styleText("blue",prefix)}', skip prefixing it.`);
0 commit comments