We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87e1180 commit b145b33Copy full SHA for b145b33
2 files changed
CHANGELOG.md
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
6
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
7
8
+## [Unreleased]
9
+
10
+- fix npm package exports for cjs
11
12
## [0.2.4] - 2023-10-18
13
14
- bundle correctly
package.json
@@ -4,6 +4,10 @@
4
"description": "Instrument node.js applications with open telemetry ",
"type": "module",
"main": "dist/index.js",
+ "exports": {
+ "import": "./dist/index.js",
+ "require": "./dist/index.cjs"
+ },
"files": [
"dist"
],
0 commit comments