astro-indexnow 2.3.6 → 2.3.7
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/README.MD +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +15 -2
- package/package.json +1 -1
package/README.MD
CHANGED
|
@@ -6,7 +6,7 @@ to **IndexNow** after each build.
|
|
|
6
6
|
This package is designed for **modern CI/CD pipelines**, **Docker-based deployments**, and
|
|
7
7
|
**large static sites**, while remaining fully deterministic and explicit.
|
|
8
8
|
|
|
9
|
-
> **Current release:** v2.3.
|
|
9
|
+
> **Current release:** v2.3.7
|
|
10
10
|
> **Stateful by design. `changed` by default, `all` available. Batch-safe. CI-aware.**
|
|
11
11
|
|
|
12
12
|
---
|
|
@@ -198,10 +198,12 @@ To detect changes between builds, the integration stores a small cache file:
|
|
|
198
198
|
|
|
199
199
|
This file:
|
|
200
200
|
- Is created automatically
|
|
201
|
-
- Contains
|
|
201
|
+
- Contains a small version marker plus URL → hash mappings
|
|
202
202
|
- Contains **no secrets**
|
|
203
203
|
- Is safe to inspect, commit, or delete
|
|
204
204
|
|
|
205
|
+
Older flat cache files are still read automatically and will be upgraded on the next write.
|
|
206
|
+
|
|
205
207
|
Deleting the file simply causes the next build to treat all pages as new.
|
|
206
208
|
|
|
207
209
|
---
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAM9C,MAAM,WAAW,eAAe;IAC9B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,SAAS,CAAC;IACzC,cAAc,CAAC,EAAE,SAAS,GAAG,KAAK,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAM9C,MAAM,WAAW,eAAe;IAC9B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,SAAS,CAAC;IACzC,cAAc,CAAC,EAAE,SAAS,GAAG,KAAK,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAOD,MAAM,CAAC,OAAO,UAAU,QAAQ,CAC9B,OAAO,GAAE,eAAoB,GAC5B,gBAAgB,CAsVlB"}
|
package/dist/index.js
CHANGED
|
@@ -48,7 +48,16 @@ export default function indexNow(options = {}) {
|
|
|
48
48
|
function loadCache(logger) {
|
|
49
49
|
logger.debug("loading cache file");
|
|
50
50
|
try {
|
|
51
|
-
|
|
51
|
+
const parsed = JSON.parse(fs.readFileSync(cachePath, "utf8"));
|
|
52
|
+
if (parsed &&
|
|
53
|
+
typeof parsed === "object" &&
|
|
54
|
+
"version" in parsed &&
|
|
55
|
+
parsed.version === 1 &&
|
|
56
|
+
"entries" in parsed &&
|
|
57
|
+
typeof parsed.entries === "object") {
|
|
58
|
+
return parsed.entries;
|
|
59
|
+
}
|
|
60
|
+
return parsed;
|
|
52
61
|
}
|
|
53
62
|
catch {
|
|
54
63
|
logger.warn("cache file unreadable, resetting");
|
|
@@ -57,7 +66,11 @@ export default function indexNow(options = {}) {
|
|
|
57
66
|
}
|
|
58
67
|
function saveCache(logger, data) {
|
|
59
68
|
logger.debug("writing cache file");
|
|
60
|
-
|
|
69
|
+
const cacheFile = {
|
|
70
|
+
version: 1,
|
|
71
|
+
entries: data,
|
|
72
|
+
};
|
|
73
|
+
fs.writeFileSync(cachePath, JSON.stringify(cacheFile, null, 2), "utf8");
|
|
61
74
|
}
|
|
62
75
|
function chunk(array, size) {
|
|
63
76
|
const chunks = [];
|