astro 3.0.0-beta.1 → 3.0.0-beta.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.
@@ -1,4 +1,4 @@
1
- const ASTRO_VERSION = "3.0.0-beta.1";
1
+ const ASTRO_VERSION = "3.0.0-beta.2";
2
2
  const SUPPORTED_MARKDOWN_FILE_EXTENSIONS = [
3
3
  ".markdown",
4
4
  ".mdown",
@@ -22,7 +22,7 @@ async function dev(inlineConfig) {
22
22
  base: restart.container.settings.config.base
23
23
  })
24
24
  );
25
- const currentVersion = "3.0.0-beta.1";
25
+ const currentVersion = "3.0.0-beta.2";
26
26
  if (currentVersion.includes("-")) {
27
27
  warn(logging, null, msg.prerelease({ currentVersion }));
28
28
  }
@@ -51,7 +51,7 @@ function serverStart({
51
51
  base,
52
52
  isRestart = false
53
53
  }) {
54
- const version = "3.0.0-beta.1";
54
+ const version = "3.0.0-beta.2";
55
55
  const localPrefix = `${dim("\u2503")} Local `;
56
56
  const networkPrefix = `${dim("\u2503")} Network `;
57
57
  const emptyPrefix = " ".repeat(11);
@@ -236,7 +236,7 @@ function printHelp({
236
236
  message.push(
237
237
  linebreak(),
238
238
  ` ${bgGreen(black(` ${commandName} `))} ${green(
239
- `v${"3.0.0-beta.1"}`
239
+ `v${"3.0.0-beta.2"}`
240
240
  )} ${headline}`
241
241
  );
242
242
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro",
3
- "version": "3.0.0-beta.1",
3
+ "version": "3.0.0-beta.2",
4
4
  "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
5
5
  "type": "module",
6
6
  "author": "withastro",
@@ -157,7 +157,7 @@
157
157
  "which-pm": "^2.0.0",
158
158
  "yargs-parser": "^21.1.1",
159
159
  "zod": "^3.20.6",
160
- "@astrojs/internal-helpers": "0.2.0-beta.0",
160
+ "@astrojs/internal-helpers": "0.2.0-beta.1",
161
161
  "@astrojs/markdown-remark": "3.0.0-beta.0",
162
162
  "@astrojs/telemetry": "3.0.0-beta.1"
163
163
  },