@evenicanpm/common-core 2.4.1 → 2.5.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @evenicanpm/common-core
2
2
 
3
+ ## 2.5.0
4
+
5
+ ## 2.4.2
6
+
7
+ ### Patch Changes
8
+
9
+ - fix: bumping all versions and then re-publishing to properly strip out the workspace: deps.
10
+
3
11
  ## 2.4.1
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evenicanpm/common-core",
3
- "version": "2.4.1",
3
+ "version": "2.5.0",
4
4
  "description": "Common module for Headless Storefront and Admin panel",
5
5
  "author": "Evenica",
6
6
  "type": "module",
@@ -19,10 +19,10 @@ export async function initializeOTel() {
19
19
  }
20
20
  ```
21
21
 
22
- **Then import it early in your server startup** (e.g., in a route handler or API middleware that runs first):
22
+ **Then import it early in your server startup** (e.g., in a route handler or API proxy that runs first):
23
23
 
24
24
  ```ts
25
- // In your first API route or middleware
25
+ // In your first API route or proxy
26
26
  import { initializeOTel } from "@/lib/otel-init";
27
27
  await initializeOTel();
28
28
  ```