vercel-seo-audit 2.3.1 → 2.4.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/dist/cli.js +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -11,7 +11,7 @@ const program = new Command();
|
|
|
11
11
|
program
|
|
12
12
|
.name('vercel-seo-audit')
|
|
13
13
|
.description('Diagnose SEO and indexing issues for Next.js/Vercel websites')
|
|
14
|
-
.version('2.
|
|
14
|
+
.version('2.4.0') // x-release-please-version
|
|
15
15
|
.argument('[url]', 'URL to audit (e.g. https://yusufhan.dev)')
|
|
16
16
|
.option('--json', 'Output results as JSON')
|
|
17
17
|
.option('--verbose', 'Show detailed information for each finding')
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const DEFAULT_TIMEOUT = 10000;
|
|
2
2
|
export declare const MAX_REDIRECTS = 20;
|
|
3
|
-
export declare const USER_AGENT = "vercel-seo-audit/2.
|
|
3
|
+
export declare const USER_AGENT = "vercel-seo-audit/2.4.0";
|
|
4
4
|
export declare const SITEMAP_SAMPLE_SIZE = 10;
|
|
5
5
|
export declare const COMMON_PAGES: string[];
|
|
6
6
|
export declare const USER_AGENT_PRESETS: Record<string, string>;
|
package/dist/constants.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const DEFAULT_TIMEOUT = 10_000;
|
|
2
2
|
export const MAX_REDIRECTS = 20;
|
|
3
|
-
export const USER_AGENT = 'vercel-seo-audit/2.
|
|
3
|
+
export const USER_AGENT = 'vercel-seo-audit/2.4.0'; // x-release-please-version
|
|
4
4
|
export const SITEMAP_SAMPLE_SIZE = 10;
|
|
5
5
|
export const COMMON_PAGES = ['/about', '/contact', '/blog', '/pricing'];
|
|
6
6
|
export const USER_AGENT_PRESETS = {
|