nuxt-schema-org 1.0.0-beta.4 → 1.0.0-beta.5

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
@@ -4,5 +4,5 @@
4
4
  "bridge": false
5
5
  },
6
6
  "name": "nuxt-schema-org",
7
- "version": "1.0.0-beta.4"
7
+ "version": "1.0.0-beta.5"
8
8
  }
package/dist/module.mjs CHANGED
@@ -30,7 +30,7 @@ const module = defineNuxtModule({
30
30
  filename: "nuxt-schema-org-config.mjs",
31
31
  getContents: () => `export default ${JSON.stringify(moduleOptions)}`
32
32
  });
33
- const componentPath = await resolvePath("@vueuse/schema-org/components");
33
+ const componentPath = await resolvePath(`${schemaOrgPath}/runtime/components`);
34
34
  for (const component of schemaOrgComponents) {
35
35
  await addComponent({
36
36
  name: component,
@@ -62,7 +62,10 @@ const module = defineNuxtModule({
62
62
  config.plugins.push(SchemaOrg({
63
63
  mock: !moduleOptions.client && isClient,
64
64
  full: moduleOptions.full,
65
- runtimePath: nuxtSchemaComposablesRuntime
65
+ aliasPaths: {
66
+ pkgDir: schemaOrgPath,
67
+ runtime: nuxtSchemaComposablesRuntime
68
+ }
66
69
  }));
67
70
  });
68
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-schema-org",
3
- "version": "1.0.0-beta.4",
3
+ "version": "1.0.0-beta.5",
4
4
  "description": "Nuxt module for @vueuse/schema-org",
5
5
  "author": "Harlan Wilton <harlan@harlanzw.com>",
6
6
  "license": "MIT",
@@ -36,8 +36,8 @@
36
36
  ],
37
37
  "dependencies": {
38
38
  "@nuxt/kit": "3.0.0-rc.8",
39
- "@vueuse/schema-org": "1.0.0-beta.4",
40
- "@vueuse/schema-org-vite": "1.0.0-beta.4",
39
+ "@vueuse/schema-org": "1.0.0-beta.5",
40
+ "@vueuse/schema-org-vite": "1.0.0-beta.5",
41
41
  "pathe": "^0.3.4",
42
42
  "schema-org-graph-js": "0.3.3"
43
43
  },