@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.
@@ -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.1"}`;
605
+ message += ` v${"0.3.2"}`;
606
606
  }
607
607
  message += "\n\n";
608
608
  message += import_kleur2.default.dim("Server listening at");
@@ -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.1"}`;
562
+ message += ` v${"0.3.2"}`;
563
563
  }
564
564
  message += "\n\n";
565
565
  message += kleur2.dim("Server listening at");
@@ -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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marko/run",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "The Marko application framework.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/marko-js/run/tree/main/packages/run",