@marko/run 0.3.1 → 0.3.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/adapter/index.cjs +1 -1
- package/dist/adapter/index.js +1 -1
- package/dist/cli/index.mjs +3 -1
- package/package.json +1 -1
package/dist/adapter/index.cjs
CHANGED
|
@@ -602,7 +602,7 @@ function logInfoBox(address, explorer) {
|
|
|
602
602
|
const color = !!import_supports_color.default.stdout;
|
|
603
603
|
let message = import_kleur2.default.bold("Marko Run");
|
|
604
604
|
if (true) {
|
|
605
|
-
message += ` v${"0.3.
|
|
605
|
+
message += ` v${"0.3.2"}`;
|
|
606
606
|
}
|
|
607
607
|
message += "\n\n";
|
|
608
608
|
message += import_kleur2.default.dim("Server listening at");
|
package/dist/adapter/index.js
CHANGED
|
@@ -559,7 +559,7 @@ function logInfoBox(address, explorer) {
|
|
|
559
559
|
const color = !!supporsColor.stdout;
|
|
560
560
|
let message = kleur2.bold("Marko Run");
|
|
561
561
|
if (true) {
|
|
562
|
-
message += ` v${"0.3.
|
|
562
|
+
message += ` v${"0.3.2"}`;
|
|
563
563
|
}
|
|
564
564
|
message += "\n\n";
|
|
565
565
|
message += kleur2.dim("Server listening at");
|
package/dist/cli/index.mjs
CHANGED
|
@@ -2384,7 +2384,9 @@ async function build(entry, cwd, configFile, outDir, envFile) {
|
|
|
2384
2384
|
const root = cwd;
|
|
2385
2385
|
const resolvedConfig = await resolveConfig(
|
|
2386
2386
|
{ root, configFile, logLevel: "silent" },
|
|
2387
|
-
"build"
|
|
2387
|
+
"build",
|
|
2388
|
+
"production",
|
|
2389
|
+
"production"
|
|
2388
2390
|
);
|
|
2389
2391
|
const adapter = await resolveAdapter2(resolvedConfig);
|
|
2390
2392
|
if (!adapter) {
|