nuxt-schema-org 0.0.14 → 0.1.1
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 +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/plugin.mjs +1 -2
- package/package.json +11 -11
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -20,7 +20,7 @@ const module = defineNuxtModule({
|
|
|
20
20
|
getContents: () => `export default ${JSON.stringify({ config })}`
|
|
21
21
|
});
|
|
22
22
|
if (config.autoImportComposables) {
|
|
23
|
-
nuxt.
|
|
23
|
+
nuxt.hooks.hookOnce("autoImports:sources", (autoImports) => {
|
|
24
24
|
autoImports.unshift({
|
|
25
25
|
from: "@vueuse/schema-org",
|
|
26
26
|
imports: schemaOrgAutoImports["@vueuse/schema-org"]
|
package/dist/runtime/plugin.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-schema-org",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Nuxt module for @vueuse/schema-org",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"schema-org",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"bugs": {
|
|
35
35
|
"url": "https://github.com/vueuse/schema-org/issues"
|
|
36
36
|
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "nuxi prepare ../../playgrounds/nuxt3 && nuxt-module-build",
|
|
39
|
-
"prepack": "nuxt-module-build",
|
|
40
|
-
"play": "nuxi dev ../../playgrounds/nuxt3",
|
|
41
|
-
"play:build": "nuxi build ../../playgrounds/nuxt3",
|
|
42
|
-
"stub": "nuxt-module-build --stub && nuxi prepare ../../playgrounds/nuxt3"
|
|
43
|
-
},
|
|
44
37
|
"dependencies": {
|
|
45
38
|
"@nuxt/kit": "^3.0.0-rc.1",
|
|
46
|
-
"@vueuse/schema-org": "
|
|
39
|
+
"@vueuse/schema-org": "0.1.1"
|
|
47
40
|
},
|
|
48
41
|
"devDependencies": {
|
|
49
42
|
"@nuxt/module-builder": "latest",
|
|
50
43
|
"nuxt": "^3.0.0-rc.1"
|
|
51
|
-
}
|
|
52
|
-
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "nuxi prepare ../../playgrounds/nuxt3 && nuxt-module-build",
|
|
47
|
+
"play": "nuxi dev ../../playgrounds/nuxt3",
|
|
48
|
+
"play:build": "nuxi build ../../playgrounds/nuxt3",
|
|
49
|
+
"stub": "nuxt-module-build --stub && nuxi prepare ../../playgrounds/nuxt3"
|
|
50
|
+
},
|
|
51
|
+
"readme": "# nuxt-schema-org\n\nThe Nuxt.js integration for [@vueuse/schema-org](https://github.com/vueuse/schema-org).\n\n## Install\n\n```bash\n# NPM\nnpm install -D nuxt-schema-org\n# or Yarn\nyarn add -D nuxt-schema-org\n# or PNPM\npnpm add -D nuxt-schema-org\n```\n\n## Setup Module\n\nFind documentation in the [Nuxt Setup](https://vue-schema-org.netlify.app/guide/setup/nuxt.html) guide\n\n## License\n\nMIT License © 2022-PRESENT [Harlan Wilton](https://github.com/harlan-zw)\n"
|
|
52
|
+
}
|