chefcookie 2.6.4 → 2.6.7

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
@@ -4,7 +4,28 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- #### [2.6.3](https://github.com/vielhuber/chefcookie/compare/2.6.3...2.6.3)
7
+ #### [2.6.6](https://github.com/vielhuber/chefcookie/compare/2.6.6...2.6.6)
8
+
9
+ #### [2.6.6](https://github.com/vielhuber/chefcookie/compare/2.6.5...2.6.6)
10
+
11
+ > 12 July 2022
12
+
13
+ - Update changelog. [`1502aef`](https://github.com/vielhuber/chefcookie/commit/1502aef18d7b04b59f1f2a561d7429eac5801910)
14
+ - Improve nvmrc. [`564c86d`](https://github.com/vielhuber/chefcookie/commit/564c86dd67d445c7f70472f8c041aa8ca3007417)
15
+
16
+ #### [2.6.5](https://github.com/vielhuber/chefcookie/compare/2.6.4...2.6.5)
17
+
18
+ > 5 July 2022
19
+
20
+ - Improve exclusion detection. [`392a314`](https://github.com/vielhuber/chefcookie/commit/392a3144eb27289ac52f02d2921a02f2c90c08a2)
21
+ - Update changelog. [`0762fc6`](https://github.com/vielhuber/chefcookie/commit/0762fc6f5ff9b01e1137b9e8d08d1a9fecac25b3)
22
+
23
+ #### [2.6.4](https://github.com/vielhuber/chefcookie/compare/2.6.3...2.6.4)
24
+
25
+ > 23 May 2022
26
+
27
+ - Update changelog. [`ba39b13`](https://github.com/vielhuber/chefcookie/commit/ba39b13aee815bd841f1b5fa6f8348ecc34b41be)
28
+ - Improve gtm debug preview mode. [`471d4cc`](https://github.com/vielhuber/chefcookie/commit/471d4ccccc774d1a70e56fb6dd8977920cfe96e7)
8
29
 
9
30
  #### [2.6.3](https://github.com/vielhuber/chefcookie/compare/2.6.2...2.6.3)
10
31
 
package/_build/script.js CHANGED
@@ -375,7 +375,7 @@ var chefcookie = /*#__PURE__*/function () {
375
375
  excluded = true;
376
376
  }
377
377
 
378
- if (typeof exclude__value === 'string' && (exclude__value.indexOf('http') === 0 && exclude__value === window.location.protocol + '//' + window.location.host + window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value === window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value + '/' === window.location.pathname)) {
378
+ if (typeof exclude__value === 'string' && (exclude__value.indexOf('http') === 0 && exclude__value === window.location.protocol + '//' + window.location.host + window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value === window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value === decodeURI(window.location.pathname) || exclude__value.indexOf('http') !== 0 && exclude__value + '/' === window.location.pathname || exclude__value.indexOf('http') !== 0 && exclude__value + '/' === decodeURI(window.location.pathname))) {
379
379
  excluded = true;
380
380
  }
381
381
  });