@graphcommerce/googleanalytics 1.2.1 → 2.0.0
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 +21 -28
- package/package.json +6 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,56 +1,49 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
3
|
+
## 2.0.0
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
5
|
+
### Major Changes
|
|
10
6
|
|
|
11
|
-
|
|
7
|
+
- [#1258](https://github.com/ho-nl/m2-pwa/pull/1258)
|
|
8
|
+
[`ad36382a4`](https://github.com/ho-nl/m2-pwa/commit/ad36382a4d55d83d9e47b7eb6a02671a2a631a05)
|
|
9
|
+
Thanks [@paales](https://github.com/paales)! - Upgraded to Material UI 5
|
|
12
10
|
|
|
11
|
+
All notable changes to this project will be documented in this file. See
|
|
12
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
13
13
|
|
|
14
|
+
# [1.2.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/googleanalytics@1.1.4...@graphcommerce/googleanalytics@1.2.0) (2021-12-21)
|
|
14
15
|
|
|
16
|
+
### Features
|
|
15
17
|
|
|
18
|
+
- **googleanalytics:** moved to gtag
|
|
19
|
+
([c586a8f](https://github.com/ho-nl/m2-pwa/commit/c586a8f66547cf7c332113e991a257181ce8d338))
|
|
16
20
|
|
|
17
21
|
## [1.1.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/googleanalytics@1.1.3...@graphcommerce/googleanalytics@1.1.4) (2021-12-20)
|
|
18
22
|
|
|
19
|
-
|
|
20
23
|
### Bug Fixes
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
- make sure analytics only tracks once on page load
|
|
26
|
+
([94def43](https://github.com/ho-nl/m2-pwa/commit/94def43db7075b6b039696612547c6b6ff7c7c6e))
|
|
27
|
+
- make sure we're not loading gogole properties when keys are not given
|
|
28
|
+
([8636715](https://github.com/ho-nl/m2-pwa/commit/8636715d61985e0919208ffb64354c3ebb43ed01))
|
|
28
29
|
|
|
29
30
|
## [1.1.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/googleanalytics@1.1.1...@graphcommerce/googleanalytics@1.1.2) (2021-12-17)
|
|
30
31
|
|
|
31
|
-
|
|
32
32
|
### Bug Fixes
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
34
|
+
- pageview with analytics not registered
|
|
35
|
+
([7cdb68d](https://github.com/ho-nl/m2-pwa/commit/7cdb68d9770a00044fa5a1f143fd05701ea72d59))
|
|
39
36
|
|
|
40
37
|
## [1.1.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/googleanalytics@1.1.0...@graphcommerce/googleanalytics@1.1.1) (2021-12-17)
|
|
41
38
|
|
|
42
|
-
|
|
43
39
|
### Bug Fixes
|
|
44
40
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
41
|
+
- **googleanalytics:** make sure ga is defined
|
|
42
|
+
([787dd9f](https://github.com/ho-nl/m2-pwa/commit/787dd9f6945469e36ebf627213fdb5eefb8146cd))
|
|
50
43
|
|
|
51
44
|
# 1.1.0 (2021-12-17)
|
|
52
45
|
|
|
53
|
-
|
|
54
46
|
### Features
|
|
55
47
|
|
|
56
|
-
|
|
48
|
+
- **googleanalytics:** created pacakge to support Google Analytics
|
|
49
|
+
([308b6df](https://github.com/ho-nl/m2-pwa/commit/308b6df1f216d2bc726c770a9ead039bd114a995))
|
package/package.json
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/googleanalytics",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
|
-
"browserslist": [
|
|
7
|
-
"extends @graphcommerce/browserslist-config-pwa"
|
|
8
|
-
],
|
|
9
6
|
"eslintConfig": {
|
|
10
7
|
"extends": "@graphcommerce/eslint-config-pwa",
|
|
11
8
|
"parserOptions": {
|
|
@@ -13,16 +10,14 @@
|
|
|
13
10
|
}
|
|
14
11
|
},
|
|
15
12
|
"devDependencies": {
|
|
16
|
-
"@graphcommerce/
|
|
17
|
-
"@graphcommerce/
|
|
18
|
-
"@graphcommerce/
|
|
19
|
-
"@graphcommerce/typescript-config-pwa": "^3.1.2",
|
|
13
|
+
"@graphcommerce/eslint-config-pwa": "^4.0.0",
|
|
14
|
+
"@graphcommerce/prettier-config-pwa": "^4.0.0",
|
|
15
|
+
"@graphcommerce/typescript-config-pwa": "^4.0.0",
|
|
20
16
|
"@types/gtag.js": "^0.0.8"
|
|
21
17
|
},
|
|
22
18
|
"dependencies": {
|
|
23
|
-
"next": "^12.0.
|
|
19
|
+
"next": "^12.0.10",
|
|
24
20
|
"react": "^17.0.2",
|
|
25
21
|
"react-dom": "^17.0.2"
|
|
26
|
-
}
|
|
27
|
-
"gitHead": "bc5423d7547f8685db4cd8fc6d8f7a2a51ebed05"
|
|
22
|
+
}
|
|
28
23
|
}
|