nuxt-schema-org 1.1.0-beta.1 → 1.1.0-beta.2

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
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "configKey": "schemaOrg",
3
3
  "compatibility": {
4
- "nuxt": ">=3.0.0-rc.8",
4
+ "nuxt": ">=3.0.0-rc.9",
5
5
  "bridge": false
6
6
  },
7
7
  "name": "nuxt-schema-org",
8
- "version": "1.1.0-beta.1"
8
+ "version": "1.1.0-beta.2"
9
9
  }
package/dist/module.mjs CHANGED
@@ -7,7 +7,7 @@ const module = defineNuxtModule({
7
7
  meta: {
8
8
  configKey: "schemaOrg",
9
9
  compatibility: {
10
- nuxt: ">=3.0.0-rc.8",
10
+ nuxt: ">=3.0.0-rc.9",
11
11
  bridge: false
12
12
  }
13
13
  },
@@ -44,7 +44,7 @@ const module = defineNuxtModule({
44
44
  filePath: AliasRuntime
45
45
  });
46
46
  }
47
- nuxt.hooks.hook("autoImports:sources", (autoImports) => {
47
+ nuxt.hooks.hook("imports:sources", (autoImports) => {
48
48
  autoImports.unshift(...schemaOrgAutoImports);
49
49
  });
50
50
  nuxt.hooks.hook("vite:extendConfig", async (config, { isClient }) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-schema-org",
3
3
  "type": "module",
4
- "version": "1.1.0-beta.1",
4
+ "version": "1.1.0-beta.2",
5
5
  "description": "Nuxt module for @vueuse/schema-org",
6
6
  "author": "Harlan Wilton <harlan@harlanzw.com>",
7
7
  "license": "MIT",
@@ -34,15 +34,15 @@
34
34
  "dist"
35
35
  ],
36
36
  "dependencies": {
37
- "@nuxt/kit": "^3.0.0-rc.8",
38
- "@vueuse/schema-org": "1.1.0-beta.1",
39
- "@vueuse/schema-org-vite": "1.1.0-beta.1",
40
- "pathe": "^0.3.5",
37
+ "@nuxt/kit": "3.0.0-rc.9",
38
+ "@vueuse/schema-org": "1.1.0-beta.2",
39
+ "@vueuse/schema-org-vite": "1.1.0-beta.2",
40
+ "pathe": "^0.3.7",
41
41
  "schema-org-graph-js": "0.5.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@nuxt/module-builder": "latest",
45
- "@nuxt/schema": "3.0.0-rc.8"
45
+ "@nuxt/schema": "3.0.0-rc.9"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "npm run -C ../../test/fixtures/nuxt nuxt:prepare && nuxt-module-build",