nuxt-ai-ready 0.7.3 → 0.7.4
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/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/package.json +4 -4
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -542,7 +542,7 @@ const module$1 = defineNuxtModule({
|
|
|
542
542
|
nuxt.hooks.hook("nitro:config", (nitroConfig) => {
|
|
543
543
|
nitroConfig.experimental = nitroConfig.experimental || {};
|
|
544
544
|
nitroConfig.experimental.asyncContext = true;
|
|
545
|
-
if (config.cron) {
|
|
545
|
+
if (config.cron && !nuxt.options.dev) {
|
|
546
546
|
const cronSchedule = "* * * * *";
|
|
547
547
|
const isVercel = nitroConfig.preset === "vercel" || nitroConfig.preset === "vercel-edge";
|
|
548
548
|
if (isVercel) {
|
|
@@ -663,7 +663,7 @@ export const errorRoutes = []`;
|
|
|
663
663
|
addServerHandler({ route: "/__ai-ready/status", handler: resolve("./runtime/server/routes/__ai-ready/status.get") });
|
|
664
664
|
}
|
|
665
665
|
}
|
|
666
|
-
if (config.cron) {
|
|
666
|
+
if (config.cron && !nuxt.options.dev) {
|
|
667
667
|
addServerHandler({ route: "/__ai-ready/cron", handler: resolve("./runtime/server/routes/__ai-ready/cron.get") });
|
|
668
668
|
}
|
|
669
669
|
const isStatic = nuxt.options.nitro.static || nuxt.options._generate || false;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-ai-ready",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.4",
|
|
5
5
|
"description": "Best practice AI & LLM discoverability for Nuxt sites.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
"@nuxtjs/robots": "^5.6.7",
|
|
75
75
|
"@nuxtjs/sitemap": "^7.5.2",
|
|
76
76
|
"@types/better-sqlite3": "^7.6.13",
|
|
77
|
-
"@vitest/coverage-v8": "^4.0.
|
|
77
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
78
78
|
"@vue/test-utils": "^2.4.6",
|
|
79
79
|
"@vueuse/nuxt": "^14.1.0",
|
|
80
80
|
"agents": "^0.3.4",
|
|
81
|
-
"ai": "^6.0.
|
|
81
|
+
"ai": "^6.0.30",
|
|
82
82
|
"better-sqlite3": "^12.6.0",
|
|
83
83
|
"bumpp": "^10.3.2",
|
|
84
84
|
"eslint": "^9.39.2",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"playwright-core": "^1.57.0",
|
|
91
91
|
"postgres": "^3.4.8",
|
|
92
92
|
"typescript": "^5.9.3",
|
|
93
|
-
"vitest": "^4.0.
|
|
93
|
+
"vitest": "^4.0.17",
|
|
94
94
|
"vue": "^3.5.26",
|
|
95
95
|
"vue-router": "^4.6.4",
|
|
96
96
|
"vue-tsc": "^3.2.2",
|