astro 0.25.0 → 0.25.1

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/index.js CHANGED
@@ -37,7 +37,7 @@ function printAstroHelp() {
37
37
  });
38
38
  }
39
39
  async function printVersion() {
40
- const version = "0.25.0";
40
+ const version = "0.25.1";
41
41
  console.log();
42
42
  console.log(` ${colors.bgGreen(colors.black(` astro `))} ${colors.green(`v${version}`)}`);
43
43
  }
@@ -23,7 +23,7 @@ async function dev(config, options = { logging: defaultLogOptions }) {
23
23
  const devServerAddressInfo = viteServer.httpServer.address();
24
24
  const site = config.buildOptions.site ? new URL(config.buildOptions.site) : void 0;
25
25
  info(options.logging, null, msg.devStart({ startupTime: performance.now() - devStart, config, devServerAddressInfo, site, https: !!((_a = viteConfig.server) == null ? void 0 : _a.https) }));
26
- const currentVersion = "0.25.0";
26
+ const currentVersion = "0.25.1";
27
27
  if (currentVersion.includes("-")) {
28
28
  warn(options.logging, null, msg.prerelease({ currentVersion }));
29
29
  }
@@ -28,7 +28,7 @@ function devStart({
28
28
  https,
29
29
  site
30
30
  }) {
31
- const version = "0.25.0";
31
+ const version = "0.25.1";
32
32
  const rootPath = site ? site.pathname : "/";
33
33
  const localPrefix = `${dim("\u2503")} Local `;
34
34
  const networkPrefix = `${dim("\u2503")} Network `;
@@ -121,7 +121,7 @@ function printHelp({
121
121
  };
122
122
  let message = [];
123
123
  if (headline) {
124
- message.push(linebreak(), ` ${bgGreen(black(` ${commandName} `))} ${green(`v${"0.25.0"}`)} ${headline}`);
124
+ message.push(linebreak(), ` ${bgGreen(black(` ${commandName} `))} ${green(`v${"0.25.1"}`)} ${headline}`);
125
125
  }
126
126
  if (usage) {
127
127
  message.push(linebreak(), ` ${green(commandName)} ${bold(usage)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro",
3
- "version": "0.25.0",
3
+ "version": "0.25.1",
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",
@@ -65,7 +65,7 @@
65
65
  ],
66
66
  "dependencies": {
67
67
  "@astrojs/compiler": "^0.13.1",
68
- "@astrojs/language-server": "^0.8.10",
68
+ "@astrojs/language-server": "^0.13.2",
69
69
  "@astrojs/markdown-remark": "^0.7.0",
70
70
  "@astrojs/prism": "0.4.1",
71
71
  "@astrojs/webapi": "^0.11.0",
@@ -85,6 +85,7 @@
85
85
  "es-module-lexer": "^0.10.4",
86
86
  "esbuild": "0.14.25",
87
87
  "estree-walker": "^3.0.1",
88
+ "execa": "^6.1.0",
88
89
  "fast-glob": "^3.2.11",
89
90
  "fast-xml-parser": "^4.0.7",
90
91
  "html-entities": "^2.3.2",
@@ -144,7 +145,6 @@
144
145
  "astro-scripts": "0.0.2",
145
146
  "chai": "^4.3.6",
146
147
  "cheerio": "^1.0.0-rc.10",
147
- "execa": "^6.1.0",
148
148
  "mocha": "^9.2.2",
149
149
  "sass": "^1.49.9"
150
150
  },