@ultimat3/seo 6.0.0 → 7.0.0
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/package.json +2 -2
- package/src/index.ts +2 -1
- package/src/routes.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultimat3/seo",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Enforced SEO: typed meta, JSON-LD, sitemap, robots, feeds, responsive images, perf budgets",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"test": "bun test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ultimat3/core": "
|
|
34
|
+
"@ultimat3/core": "7.0.0"
|
|
35
35
|
}
|
|
36
36
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// The public surface of @ultimat3/seo. Explicit named exports only.
|
|
2
2
|
|
|
3
|
+
export type { RenderMode } from '@ultimat3/core';
|
|
3
4
|
export type { SeoErrorCode, SeoErrorInit } from './errors';
|
|
4
5
|
export {
|
|
5
6
|
canonicalMismatch,
|
|
@@ -90,7 +91,7 @@ export {
|
|
|
90
91
|
} from './meta';
|
|
91
92
|
export type { RobotsConfig, RobotsGroup } from './robots';
|
|
92
93
|
export { buildRobots, isIndexable } from './robots';
|
|
93
|
-
export type { ChangeFreq,
|
|
94
|
+
export type { ChangeFreq, RouteRecord, Surface } from './routes';
|
|
94
95
|
export { expandRoute, indexableRoutes, isDynamic } from './routes';
|
|
95
96
|
export type { BuildFeedOptions, Feed, FeedAuthor, FeedChannel, FeedItem } from './rss';
|
|
96
97
|
export { buildFeed } from './rss';
|
package/src/routes.ts
CHANGED
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
// `x.manifest.json`; every checker here reports against `file`, so an agent can
|
|
3
3
|
// open the exact source rather than guess which route a URL came from.
|
|
4
4
|
|
|
5
|
+
import type { RenderMode } from '@ultimat3/core';
|
|
5
6
|
import type { RouteMeta } from './meta';
|
|
6
7
|
|
|
7
|
-
export type RenderMode = 'static' | 'isr' | 'ssr' | 'stream';
|
|
8
|
-
|
|
9
8
|
/** `site/` is the only surface SEO applies to; `app/` is behind auth. */
|
|
10
9
|
export type Surface = 'site' | 'app' | 'api';
|
|
11
10
|
|