@nasti-toolchain/nasti 2.4.1 → 2.4.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/index.js CHANGED
@@ -3811,7 +3811,7 @@ async function build(inlineConfig = {}) {
3811
3811
  const startTime = performance.now();
3812
3812
  logger.info(
3813
3813
  pc4.cyan(`
3814
- nasti v${"2.4.1"} `) + pc4.green(`building for ${config.mode}...`)
3814
+ nasti v${"2.4.2"} `) + pc4.green(`building for ${config.mode}...`)
3815
3815
  );
3816
3816
  debug5?.(`root: ${config.root}`);
3817
3817
  const buildableNames = Object.keys(config.environments).filter((name) => {
@@ -6414,7 +6414,7 @@ async function createServer(inlineConfig = {}) {
6414
6414
  const readyIn = Math.ceil(performance.now() - startTime);
6415
6415
  logger.info(
6416
6416
  `
6417
- ${pc9.cyan(pc9.bold("NASTI"))} ${pc9.cyan(`v${"2.4.1"}`)} ${pc9.dim("ready in")} ${pc9.bold(readyIn)} ${pc9.dim("ms")}
6417
+ ${pc9.cyan(pc9.bold("NASTI"))} ${pc9.cyan(`v${"2.4.2"}`)} ${pc9.dim("ready in")} ${pc9.bold(readyIn)} ${pc9.dim("ms")}
6418
6418
  `
6419
6419
  );
6420
6420
  printServerUrls(
@@ -6605,7 +6605,7 @@ async function buildElectron(inlineConfig = {}) {
6605
6605
  const config = await resolveConfig({ ...inlineConfig, target: "electron" }, "build");
6606
6606
  const startTime = performance.now();
6607
6607
  assertElectronVersion(config);
6608
- console.log(pc5.cyan("\n\u26A1 nasti build (electron)") + pc5.dim(` v${"2.4.1"}`));
6608
+ console.log(pc5.cyan("\n\u26A1 nasti build (electron)") + pc5.dim(` v${"2.4.2"}`));
6609
6609
  console.log(pc5.dim(` root: ${config.root}`));
6610
6610
  console.log(pc5.dim(` mode: ${config.mode}`));
6611
6611
  console.log(pc5.dim(` target: electron (\u2265 ${config.electron.minVersion})`));
@@ -6778,7 +6778,7 @@ async function startElectronDev(inlineConfig = {}) {
6778
6778
  const { noSpawn, ...rest } = inlineConfig;
6779
6779
  const config = await resolveConfig({ ...rest, target: "electron" }, "serve");
6780
6780
  warnElectronVersion(config);
6781
- console.log(pc10.cyan("\n\u26A1 nasti electron dev") + pc10.dim(` v${"2.4.1"}`));
6781
+ console.log(pc10.cyan("\n\u26A1 nasti electron dev") + pc10.dim(` v${"2.4.2"}`));
6782
6782
  const { createServer: createServer2 } = await Promise.resolve().then(() => (init_server(), server_exports));
6783
6783
  const server = await createServer2({
6784
6784
  ...rest,