@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/cli.cjs +6 -6
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +6 -6
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -5385,7 +5385,7 @@ async function build(inlineConfig = {}) {
|
|
|
5385
5385
|
const startTime = performance.now();
|
|
5386
5386
|
logger.info(
|
|
5387
5387
|
import_picocolors6.default.cyan(`
|
|
5388
|
-
nasti v${"2.4.
|
|
5388
|
+
nasti v${"2.4.2"} `) + import_picocolors6.default.green(`building for ${config.mode}...`)
|
|
5389
5389
|
);
|
|
5390
5390
|
debug6?.(`root: ${config.root}`);
|
|
5391
5391
|
const buildableNames = Object.keys(config.environments).filter((name) => {
|
|
@@ -6408,7 +6408,7 @@ async function createServer(inlineConfig = {}) {
|
|
|
6408
6408
|
const readyIn = Math.ceil(performance.now() - startTime);
|
|
6409
6409
|
logger.info(
|
|
6410
6410
|
`
|
|
6411
|
-
${import_picocolors8.default.cyan(import_picocolors8.default.bold("NASTI"))} ${import_picocolors8.default.cyan(`v${"2.4.
|
|
6411
|
+
${import_picocolors8.default.cyan(import_picocolors8.default.bold("NASTI"))} ${import_picocolors8.default.cyan(`v${"2.4.2"}`)} ${import_picocolors8.default.dim("ready in")} ${import_picocolors8.default.bold(readyIn)} ${import_picocolors8.default.dim("ms")}
|
|
6412
6412
|
`
|
|
6413
6413
|
);
|
|
6414
6414
|
printServerUrls(
|
|
@@ -6606,7 +6606,7 @@ async function buildElectron(inlineConfig = {}) {
|
|
|
6606
6606
|
const config = await resolveConfig({ ...inlineConfig, target: "electron" }, "build");
|
|
6607
6607
|
const startTime = performance.now();
|
|
6608
6608
|
assertElectronVersion(config);
|
|
6609
|
-
console.log(import_picocolors9.default.cyan("\n\u26A1 nasti build (electron)") + import_picocolors9.default.dim(` v${"2.4.
|
|
6609
|
+
console.log(import_picocolors9.default.cyan("\n\u26A1 nasti build (electron)") + import_picocolors9.default.dim(` v${"2.4.2"}`));
|
|
6610
6610
|
console.log(import_picocolors9.default.dim(` root: ${config.root}`));
|
|
6611
6611
|
console.log(import_picocolors9.default.dim(` mode: ${config.mode}`));
|
|
6612
6612
|
console.log(import_picocolors9.default.dim(` target: electron (\u2265 ${config.electron.minVersion})`));
|
|
@@ -6785,7 +6785,7 @@ async function startElectronDev(inlineConfig = {}) {
|
|
|
6785
6785
|
const { noSpawn, ...rest } = inlineConfig;
|
|
6786
6786
|
const config = await resolveConfig({ ...rest, target: "electron" }, "serve");
|
|
6787
6787
|
warnElectronVersion(config);
|
|
6788
|
-
console.log(import_picocolors10.default.cyan("\n\u26A1 nasti electron dev") + import_picocolors10.default.dim(` v${"2.4.
|
|
6788
|
+
console.log(import_picocolors10.default.cyan("\n\u26A1 nasti electron dev") + import_picocolors10.default.dim(` v${"2.4.2"}`));
|
|
6789
6789
|
const { createServer: createServer2 } = await Promise.resolve().then(() => (init_server(), server_exports));
|
|
6790
6790
|
const server = await createServer2({
|
|
6791
6791
|
...rest,
|
|
@@ -7150,7 +7150,7 @@ cli.command("preview [root]", "Preview production build").option("--port <port>"
|
|
|
7150
7150
|
const host = options.host === true ? "0.0.0.0" : options.host ?? "localhost";
|
|
7151
7151
|
http2.createServer(app).listen(port, host, () => {
|
|
7152
7152
|
logger.info(`
|
|
7153
|
-
${import_picocolors11.default.cyan(import_picocolors11.default.bold("NASTI"))} ${import_picocolors11.default.cyan(`v${"2.4.
|
|
7153
|
+
${import_picocolors11.default.cyan(import_picocolors11.default.bold("NASTI"))} ${import_picocolors11.default.cyan(`v${"2.4.2"}`)} ${import_picocolors11.default.dim("preview")}
|
|
7154
7154
|
`);
|
|
7155
7155
|
printServerUrls2(
|
|
7156
7156
|
{
|
|
@@ -7167,6 +7167,6 @@ cli.command("preview [root]", "Preview production build").option("--port <port>"
|
|
|
7167
7167
|
}
|
|
7168
7168
|
});
|
|
7169
7169
|
cli.help();
|
|
7170
|
-
cli.version("2.4.
|
|
7170
|
+
cli.version("2.4.2");
|
|
7171
7171
|
cli.parse();
|
|
7172
7172
|
//# sourceMappingURL=cli.cjs.map
|