astro 7.2.7 → 7.2.8
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.
|
@@ -196,7 +196,7 @@ ${contentConfig.error.message}`
|
|
|
196
196
|
logger.info("Content config changed");
|
|
197
197
|
shouldClear = true;
|
|
198
198
|
}
|
|
199
|
-
if (previousAstroVersion && previousAstroVersion !== "7.2.
|
|
199
|
+
if (previousAstroVersion && previousAstroVersion !== "7.2.8") {
|
|
200
200
|
logger.info("Astro version changed");
|
|
201
201
|
shouldClear = true;
|
|
202
202
|
}
|
|
@@ -204,8 +204,8 @@ ${contentConfig.error.message}`
|
|
|
204
204
|
logger.info("Clearing content store");
|
|
205
205
|
this.#store.clearAll();
|
|
206
206
|
}
|
|
207
|
-
if ("7.2.
|
|
208
|
-
this.#store.metaStore().set("astro-version", "7.2.
|
|
207
|
+
if ("7.2.8") {
|
|
208
|
+
this.#store.metaStore().set("astro-version", "7.2.8");
|
|
209
209
|
}
|
|
210
210
|
if (currentConfigDigest) {
|
|
211
211
|
this.#store.metaStore().set("content-config-digest", currentConfigDigest);
|
package/dist/core/constants.js
CHANGED
package/dist/core/dev/dev.js
CHANGED
|
@@ -26,7 +26,7 @@ async function dev(inlineConfig) {
|
|
|
26
26
|
await telemetry.record([]);
|
|
27
27
|
const restart = await createContainerWithAutomaticRestart({ inlineConfig, fs });
|
|
28
28
|
const logger = restart.container.logger;
|
|
29
|
-
const currentVersion = "7.2.
|
|
29
|
+
const currentVersion = "7.2.8";
|
|
30
30
|
const isPrerelease = currentVersion.includes("-");
|
|
31
31
|
if (!isPrerelease) {
|
|
32
32
|
try {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { existsSync, readFileSync, unlinkSync, writeFileSync, mkdirSync } from "node:fs";
|
|
2
2
|
import { fileURLToPath } from "node:url";
|
|
3
|
-
import findProcess from "find-
|
|
3
|
+
import findProcess from "find-proc";
|
|
4
4
|
const GRACEFUL_SHUTDOWN_TIMEOUT = 5e3;
|
|
5
5
|
function getLockFileURL(root, command = "dev") {
|
|
6
6
|
return new URL(`.astro/${command}.json`, root);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "astro",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.8",
|
|
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",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"dset": "^3.1.4",
|
|
120
120
|
"es-module-lexer": "^2.0.0",
|
|
121
121
|
"esbuild": "^0.28.0",
|
|
122
|
-
"find-
|
|
122
|
+
"find-proc": "0.1.0",
|
|
123
123
|
"flattie": "^1.1.1",
|
|
124
124
|
"fontace": "~0.4.1",
|
|
125
125
|
"get-tsconfig": "5.0.0-beta.4",
|
|
@@ -153,12 +153,12 @@
|
|
|
153
153
|
"xxhash-wasm": "^1.1.0",
|
|
154
154
|
"yargs-parser": "^22.0.0",
|
|
155
155
|
"zod": "^4.3.6",
|
|
156
|
-
"@astrojs/internal-helpers": "0.10.4",
|
|
157
156
|
"@astrojs/markdown-satteri": "0.3.8",
|
|
157
|
+
"@astrojs/internal-helpers": "0.10.4",
|
|
158
158
|
"@astrojs/telemetry": "3.3.3"
|
|
159
159
|
},
|
|
160
160
|
"optionalDependencies": {
|
|
161
|
-
"sharp": "^0.
|
|
161
|
+
"sharp": "^0.35.4"
|
|
162
162
|
},
|
|
163
163
|
"peerDependencies": {
|
|
164
164
|
"@astrojs/markdown-remark": "7.2.4"
|
|
@@ -193,8 +193,8 @@
|
|
|
193
193
|
"typescript": "^6.0.3",
|
|
194
194
|
"undici": "^7.22.0",
|
|
195
195
|
"vitest": "^4.1.0",
|
|
196
|
-
"@astrojs/check": "0.9.10",
|
|
197
196
|
"@astrojs/markdown-remark": "7.2.4",
|
|
197
|
+
"@astrojs/check": "0.9.10",
|
|
198
198
|
"astro-scripts": "0.0.14"
|
|
199
199
|
},
|
|
200
200
|
"engines": {
|