@dargmuesli/nuxt-cookie-control 6.1.1 → 6.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/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
4
  "configKey": "cookieControl",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.0.0"
package/dist/module.mjs CHANGED
@@ -3,7 +3,7 @@ import { pathToFileURL } from 'node:url';
3
3
  import { createResolver, defineNuxtModule, addPlugin, addImports, addTemplate, extendWebpackConfig, extendViteConfig, resolvePath } from '@nuxt/kit';
4
4
 
5
5
  const name = "@dargmuesli/nuxt-cookie-control";
6
- const version = "6.1.1";
6
+ const version = "6.1.2";
7
7
 
8
8
  const en = {
9
9
  accept: "Accept",
@@ -186,6 +186,7 @@
186
186
  <script setup lang="ts">
187
187
  import { ref, computed, onBeforeMount, watch } from 'vue'
188
188
 
189
+ import { useNuxtApp } from '#app'
189
190
  import { Cookie, CookieType, Locale, Translatable } from '../types'
190
191
  import {
191
192
  getAllCookieIdsString,
@@ -21,8 +21,8 @@
21
21
  <script setup lang="ts">
22
22
  import { computed } from 'vue'
23
23
 
24
+ import { useNuxtApp } from '#app'
24
25
  import { Cookie } from '../types'
25
-
26
26
  import { useCookieControl } from '#imports'
27
27
 
28
28
  const { cookiesEnabled, isModalActive, moduleOptions } = useCookieControl()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-cookie-control",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
4
  "description": "Nuxt Cookie Control Module",
5
5
  "author": "Dario Ferderber <dario.ferderber@broj42.com>",
6
6
  "maintainers": [
@@ -18,7 +18,7 @@
18
18
  "engines": {
19
19
  "node": ">=16"
20
20
  },
21
- "packageManager": "pnpm@8.6.7",
21
+ "packageManager": "pnpm@8.6.9",
22
22
  "exports": {
23
23
  ".": {
24
24
  "import": "./dist/module.mjs",
@@ -40,28 +40,28 @@
40
40
  "prepare": "husky install"
41
41
  },
42
42
  "dependencies": {
43
- "@nuxt/kit": "3.6.2",
43
+ "@nuxt/kit": "3.6.3",
44
44
  "@sindresorhus/slugify": "2.2.1",
45
45
  "css-vars-ponyfill": "2.4.8",
46
46
  "string-replace-loader": "3.1.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@commitlint/cli": "17.6.6",
50
- "@commitlint/config-conventional": "17.6.6",
49
+ "@commitlint/cli": "17.6.7",
50
+ "@commitlint/config-conventional": "17.6.7",
51
51
  "@dargmuesli/nuxt-cookie-control": "link:.",
52
52
  "@nuxt/module-builder": "0.4.0",
53
53
  "@nuxtjs/eslint-config-typescript": "12.0.0",
54
- "eslint": "8.44.0",
54
+ "eslint": "8.45.0",
55
55
  "eslint-config-prettier": "8.8.0",
56
56
  "eslint-plugin-prettier": "5.0.0",
57
57
  "husky": "8.0.3",
58
58
  "lint-staged": "13.2.3",
59
- "nuxt": "3.6.2",
59
+ "nuxt": "3.6.3",
60
60
  "prettier": "3.0.0",
61
61
  "typescript": "5.1.6",
62
62
  "vue": "3.3.4",
63
- "vue-tsc": "1.8.4",
64
- "webpack": "5.88.1"
63
+ "vue-tsc": "1.8.5",
64
+ "webpack": "5.88.2"
65
65
  },
66
66
  "publishConfig": {
67
67
  "access": "public"