@stackonward/google-tag-manager-nuxt 0.2.1 → 0.2.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @stackonward/google-tag-manager-nuxt
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Import the Nuxt Scripts Google Tag Manager composable explicitly so enabled containers work from packed dependencies, and verify that path with the generated consumer release gate.
|
|
8
|
+
|
|
3
9
|
## 0.2.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/module.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createGoogleTagManagerTransport
|
|
3
3
|
} from "@stackonward/google-tag-manager";
|
|
4
|
+
import { useScriptGoogleTagManager } from "#imports";
|
|
4
5
|
import { defineNuxtPlugin, useNuxtApp, useRuntimeConfig } from "nuxt/app";
|
|
5
6
|
import { createGoogleTagManagerLifecycleParticipant } from "../google-tag-manager-lifecycle.js";
|
|
6
7
|
export default defineNuxtPlugin({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackonward/google-tag-manager-nuxt",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Consent-aware Google Tag Manager transport and analytics composition module for Nuxt",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/module.mjs",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"zod": "^3.24.0",
|
|
38
|
-
"@stackonward/analytics-
|
|
38
|
+
"@stackonward/analytics-nuxt": "^0.1.2",
|
|
39
39
|
"@stackonward/google-tag-manager": "^0.1.1",
|
|
40
|
-
"@stackonward/analytics-
|
|
40
|
+
"@stackonward/analytics-core": "^0.2.1"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@nuxt/scripts": ">=1.3.0 <2",
|