Skip to content

Commit e49be05

Browse files
committed
feat: Update package.json
1 parent ccb876e commit e49be05

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ since we removed some methods from the public API and removed some classes from
3535
- **breaking** [core] ref: Move `extraErrorData` integration to `@sentry/integrations` package
3636
- [core] feat: Add `maxValueLength` option to adjust max string length for values, default is 250.
3737
- **breaking** [all] ref: Expose `module` in `package.json` as entry point for esm builds.
38+
- [opentracing] feat: Introduce `@sentry/opentracing` providing functions to attach opentracing data to Sentry Events
3839

3940
## 4.6.4
4041

packages/opentracing/package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sentry/opentracing",
3-
"version": "4.6.1",
4-
"description": "Sentry OpenTracing API implementation",
3+
"version": "5.0.0-beta0",
4+
"description": "Sentry OpenTracing SDK",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/minimal",
77
"author": "Sentry",
@@ -10,14 +10,15 @@
1010
"node": ">=6"
1111
},
1212
"main": "dist/index.js",
13+
"module": "esm/index.js",
1314
"types": "dist/index.d.ts",
1415
"publishConfig": {
1516
"access": "public"
1617
},
1718
"dependencies": {
18-
"@sentry/hub": "4.6.2",
19-
"@sentry/utils": "4.6.2",
20-
"@sentry/types": "4.5.3",
19+
"@sentry/hub": "5.0.0-beta0",
20+
"@sentry/utils": "5.0.0-beta0",
21+
"@sentry/types": "5.0.0-beta0",
2122
"opentracing": "0.14.3"
2223
},
2324
"devDependencies": {
@@ -32,9 +33,7 @@
3233
"scripts": {
3334
"build": "run-p build:es5 build:esm",
3435
"build:es5": "tsc -p tsconfig.build.json",
35-
"build:esm": "run-s build:esm:transpile build:esm:rewrite",
36-
"build:esm:transpile": "tsc -p tsconfig.esm.json",
37-
"build:esm:rewrite": "node ../../scripts/esm-rewrite.js",
36+
"build:esm": "tsc -p tsconfig.esm.json",
3837
"build:watch": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
3938
"clean": "rimraf dist coverage",
4039
"link:yarn": "yarn link",

0 commit comments

Comments
 (0)