@graphcommerce/googleanalytics 9.1.0-canary.25 → 9.1.0-canary.28
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 +12 -0
- package/package.json +8 -8
- package/plugins/GoogleAnalyticsTag.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.1.0-canary.28
|
|
4
|
+
|
|
5
|
+
## 9.1.0-canary.27
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#2514](https://github.com/graphcommerce-org/graphcommerce/pull/2514) [`7831df6`](https://github.com/graphcommerce-org/graphcommerce/commit/7831df6c391923da994a9c8e7e379b557b9c1d99) - Solve issue where the loaded GA4 script would not include the correct GA ID ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
11
|
+
- [#2514](https://github.com/graphcommerce-org/graphcommerce/pull/2514) [`57ece20`](https://github.com/graphcommerce-org/graphcommerce/commit/57ece2097b9a3799e1d0a459c006dab656d20b9d) - Solve an issue where Analytics and Tagmanager events wouldn't be sent. Split useSendEvent and sendEvent methods into two files so plugins can be correctly applied to each. ([@paales](https://github.com/paales))
|
|
12
|
+
|
|
13
|
+
## 9.1.0-canary.26
|
|
14
|
+
|
|
3
15
|
## 9.1.0-canary.25
|
|
4
16
|
|
|
5
17
|
## 9.1.0-canary.24
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/googleanalytics",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.1.0-canary.
|
|
5
|
+
"version": "9.1.0-canary.28",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.
|
|
16
|
-
"@graphcommerce/google-datalayer": "9.1.0-canary.
|
|
17
|
-
"@graphcommerce/graphql-mesh": "^9.1.0-canary.
|
|
18
|
-
"@graphcommerce/next-config": "^9.1.0-canary.
|
|
19
|
-
"@graphcommerce/next-ui": "^9.1.0-canary.
|
|
20
|
-
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.
|
|
21
|
-
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.28",
|
|
16
|
+
"@graphcommerce/google-datalayer": "9.1.0-canary.28",
|
|
17
|
+
"@graphcommerce/graphql-mesh": "^9.1.0-canary.28",
|
|
18
|
+
"@graphcommerce/next-config": "^9.1.0-canary.28",
|
|
19
|
+
"@graphcommerce/next-ui": "^9.1.0-canary.28",
|
|
20
|
+
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.28",
|
|
21
|
+
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.28",
|
|
22
22
|
"@mui/material": "^5.10.16",
|
|
23
23
|
"next": "*",
|
|
24
24
|
"react": "^18.2.0",
|
|
@@ -21,7 +21,7 @@ export function DocumentHeadEnd(props: PluginProps<DocumentProps>) {
|
|
|
21
21
|
|
|
22
22
|
return (
|
|
23
23
|
<>
|
|
24
|
-
<script async src=
|
|
24
|
+
<script async src={`https://www.googletagmanager.com/gtag/js?id=${id}`} />
|
|
25
25
|
<script
|
|
26
26
|
dangerouslySetInnerHTML={{
|
|
27
27
|
__html: `
|