nuxt-schema-org 3.1.0 → 3.1.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/README.md CHANGED
@@ -33,6 +33,7 @@ The quickest and easiest way to build Schema.org graphs for Nuxt. Powered by [Un
33
33
  - 🧙 30+ Nodes with automated relations, date, URL resolving and more for best practice Schema.org
34
34
  - 💡 Simple global meta provides for minimal boilerplate
35
35
  - 🌳 Minimal code, optimised for tree-shaking and SSR
36
+ - Nuxt Dev Tools integration
36
37
 
37
38
  ## Installation
38
39
 
package/dist/module.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "nuxt": "^3.7.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "3.1.0"
8
+ "version": "3.1.2"
9
9
  }
package/dist/module.mjs CHANGED
@@ -59,7 +59,7 @@ const module = defineNuxtModule({
59
59
  enabled: true,
60
60
  debug: false,
61
61
  reactive: nuxt.options.dev || !nuxt.options.ssr,
62
- minify: import.meta.env.PROD
62
+ minify: !nuxt.options.dev
63
63
  };
64
64
  },
65
65
  async setup(config, nuxt) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-schema-org",
3
3
  "type": "module",
4
- "version": "3.1.0",
4
+ "version": "3.1.2",
5
5
  "packageManager": "pnpm@8.10.0",
6
6
  "description": "Schema.org for Nuxt",
7
7
  "author": "Harlan Wilton <harlan@harlanzw.com>",