@nuxtjs/sanity
Advanced tools
Comparing version 0.9.0 to 0.9.1
@@ -0,1 +1,8 @@ | ||
### [0.9.1](https://github.com/nuxt-community/sanity-module/compare/0.9.0...0.9.1) (2021-04-14) | ||
### Bug Fixes | ||
* don't break if no `apiVersion` is set ([0023bfe](https://github.com/nuxt-community/sanity-module/commit/0023bfec6578b0183fe92354d3af4397bc8c7f2d)), closes [#120](https://github.com/nuxt-community/sanity-module/issues/120) | ||
## [0.9.0](https://github.com/nuxt-community/sanity-module/compare/0.8.0...0.9.0) (2021-04-11) | ||
@@ -2,0 +9,0 @@ |
@@ -16,3 +16,3 @@ const apiHost = "api.sanity.io"; | ||
dataset, | ||
apiVersion, | ||
apiVersion = "1", | ||
withCredentials, | ||
@@ -19,0 +19,0 @@ token |
@@ -20,3 +20,3 @@ 'use strict'; | ||
dataset, | ||
apiVersion, | ||
apiVersion = "1", | ||
withCredentials, | ||
@@ -23,0 +23,0 @@ token |
@@ -8,3 +8,3 @@ import { bold } from 'chalk'; | ||
var name = "@nuxtjs/sanity"; | ||
var version = "0.9.0"; | ||
var version = "0.9.1"; | ||
@@ -11,0 +11,0 @@ const isProd = process.env.NODE_ENV === "production"; |
@@ -17,3 +17,3 @@ 'use strict'; | ||
var name = "@nuxtjs/sanity"; | ||
var version = "0.9.0"; | ||
var version = "0.9.1"; | ||
@@ -20,0 +20,0 @@ const isProd = process.env.NODE_ENV === "production"; |
{ | ||
"name": "@nuxtjs/sanity", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "Sanity integration for Nuxt.js", | ||
@@ -64,6 +64,6 @@ "keywords": [ | ||
"@sanity/client": "2.7.1", | ||
"@types/fs-extra": "9.0.10", | ||
"@types/fs-extra": "9.0.11", | ||
"@types/jest": "26.0.22", | ||
"@types/webpack-env": "1.16.0", | ||
"@vue/test-utils": "1.1.3", | ||
"@vue/test-utils": "1.1.4", | ||
"babel-jest": "26.6.3", | ||
@@ -77,3 +77,3 @@ "eslint": "7.24.0", | ||
"playwright": "1.10.0", | ||
"release-it": "14.6.0", | ||
"release-it": "14.6.1", | ||
"siroc": "0.9.2" | ||
@@ -80,0 +80,0 @@ }, |
@@ -32,3 +32,3 @@ # @nuxtjs/sanity | ||
2. Add `@nuxtjs/sanity` to the `buildModules` section of `nuxt.config.js` | ||
2. Add `@nuxtjs/sanity/module` to the `buildModules` section of `nuxt.config.js` | ||
@@ -38,3 +38,3 @@ ```js | ||
buildModules: [ | ||
'@nuxtjs/sanity', | ||
'@nuxtjs/sanity/module', | ||
], | ||
@@ -41,0 +41,0 @@ sanity: { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52642