c15t 1.8.4 → 1.8.5

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,17 @@
1
1
  # c15t
2
2
 
3
+ ## 1.8.5
4
+
5
+ ### Patch Changes
6
+
7
+ - be4e218: Republish patch release to fix workspace dependency protocol resolution during publish.
8
+
9
+ Published package manifests now resolve `workspace:*` references to concrete semver ranges before release.
10
+
11
+ - Updated dependencies [be4e218]
12
+ - @c15t/backend@1.8.5
13
+ - @c15t/translations@1.8.5
14
+
3
15
  ## 1.8.4
4
16
 
5
17
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -472,7 +472,7 @@ const STORAGE_KEY = 'privacy-consent-storage';
472
472
  const initialState = {
473
473
  config: {
474
474
  pkg: 'c15t',
475
- version: "1.8.4",
475
+ version: "1.8.5",
476
476
  mode: 'Unknown'
477
477
  },
478
478
  consents: gdpr_consentTypes.reduce((acc, consent)=>{
package/dist/index.js CHANGED
@@ -419,7 +419,7 @@ const STORAGE_KEY = 'privacy-consent-storage';
419
419
  const initialState = {
420
420
  config: {
421
421
  pkg: 'c15t',
422
- version: "1.8.4",
422
+ version: "1.8.5",
423
423
  mode: 'Unknown'
424
424
  },
425
425
  consents: gdpr_consentTypes.reduce((acc, consent)=>{
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const version = "1.8.4";
1
+ export declare const version = "1.8.5";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c15t",
3
- "version": "1.8.4",
3
+ "version": "1.8.5",
4
4
  "description": "Developer-first CMP for JavaScript: cookie banner, consent manager, preferences centre. GDPR ready with minimal setup and rich customization",
5
5
  "keywords": [
6
6
  "nextjs",
@@ -55,15 +55,15 @@
55
55
  "not op_mini all"
56
56
  ],
57
57
  "dependencies": {
58
- "@c15t/backend": "workspace:*",
59
- "@c15t/translations": "workspace:*",
58
+ "@c15t/backend": "1.8.5",
59
+ "@c15t/translations": "1.8.5",
60
60
  "@orpc/client": "1.13.6",
61
61
  "@orpc/server": "1.13.6",
62
62
  "zustand": "^5.0.11"
63
63
  },
64
64
  "devDependencies": {
65
- "@c15t/typescript-config": "workspace:*",
66
- "@c15t/vitest-config": "workspace:*",
65
+ "@c15t/typescript-config": "0.0.1-beta.1",
66
+ "@c15t/vitest-config": "1.0.0",
67
67
  "genversion": "^3.2.0",
68
68
  "vitest-localstorage-mock": "^0.1.2"
69
69
  },