@nuxtjs/seo 2.0.0-rc.6 → 2.0.0-rc.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/dist/module.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "bridge": false
6
6
  },
7
7
  "configKey": "seo",
8
- "version": "2.0.0-rc.5"
8
+ "version": "2.0.0-rc.6"
9
9
  }
package/dist/module.mjs CHANGED
@@ -2,6 +2,7 @@ import { defineNuxtModule, createResolver, useLogger, installModule, addPlugin,
2
2
  import chalk from 'chalk';
3
3
  import { installNuxtSiteConfig } from 'nuxt-site-config-kit';
4
4
  import { readPackageJSON } from 'pkg-types';
5
+ import { $fetch } from 'ofetch';
5
6
 
6
7
  const Modules = [
7
8
  "nuxt-simple-robots",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxtjs/seo",
3
3
  "type": "module",
4
- "version": "2.0.0-rc.6",
4
+ "version": "2.0.0-rc.7",
5
5
  "packageManager": "pnpm@8.15.1",
6
6
  "description": "The all-in-one SEO layer for Nuxt 3.",
7
7
  "author": {
@@ -62,6 +62,11 @@
62
62
  "typescript": "^5.3.3",
63
63
  "vitest": "^1.2.2"
64
64
  },
65
+ "build": {
66
+ "externals": [
67
+ "ofetch"
68
+ ]
69
+ },
65
70
  "scripts": {
66
71
  "build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build",
67
72
  "dev": "nuxi dev .playground",