@sentry/tanstackstart-react 10.42.0 → 10.44.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/README.md CHANGED
@@ -12,9 +12,7 @@
12
12
 
13
13
  > NOTICE: This package is in alpha state and may be subject to breaking changes.
14
14
 
15
- ## Getting Started
16
-
17
- This SDK does not have docs yet. Stay tuned.
15
+ > See the [Official Sentry TanStack Start SDK Docs](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/) to get started.
18
16
 
19
17
  ## Compatibility
20
18
 
@@ -45,8 +43,7 @@ Sentry.captureMessage('Hello, world!');
45
43
 
46
44
  ## Links
47
45
 
48
- <!-- - [Official SDK Docs](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/) -->
49
-
46
+ - [Official SDK Docs](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/)
50
47
  - [Sentry.io](https://sentry.io/?utm_source=github&utm_medium=npm_tanstackstartreact)
51
48
  - [Sentry Discord Server](https://discord.gg/Ww9hbqr)
52
49
  - [Stack Overflow](https://stackoverflow.com/questions/tagged/sentry)
@@ -1 +1 @@
1
- {"type":"module","version":"10.42.0","sideEffects":false}
1
+ {"type":"module","version":"10.44.0","sideEffects":false}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/tanstackstart-react",
3
- "version": "10.42.0",
3
+ "version": "10.44.0",
4
4
  "description": "Official Sentry SDK for TanStack Start React",
5
5
  "repository": "git://github.com/getsentry/sentry-javascript.git",
6
6
  "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/tanstackstart-react",
@@ -19,6 +19,14 @@
19
19
  "./package.json": "./package.json",
20
20
  ".": {
21
21
  "types": "./build/types/index.types.d.ts",
22
+ "workerd": {
23
+ "import": "./build/esm/index.server.js",
24
+ "require": "./build/cjs/index.server.js"
25
+ },
26
+ "worker": {
27
+ "import": "./build/esm/index.server.js",
28
+ "require": "./build/cjs/index.server.js"
29
+ },
22
30
  "browser": {
23
31
  "import": "./build/esm/index.client.js",
24
32
  "require": "./build/cjs/index.client.js"
@@ -56,11 +64,11 @@
56
64
  },
57
65
  "dependencies": {
58
66
  "@opentelemetry/api": "^1.9.0",
59
- "@opentelemetry/semantic-conventions": "^1.37.0",
60
- "@sentry-internal/browser-utils": "10.42.0",
61
- "@sentry/core": "10.42.0",
62
- "@sentry/node": "10.42.0",
63
- "@sentry/react": "10.42.0",
67
+ "@opentelemetry/semantic-conventions": "^1.40.0",
68
+ "@sentry-internal/browser-utils": "10.44.0",
69
+ "@sentry/core": "10.44.0",
70
+ "@sentry/node": "10.44.0",
71
+ "@sentry/react": "10.44.0",
64
72
  "@sentry/vite-plugin": "^5.1.0"
65
73
  },
66
74
  "devDependencies": {
@@ -79,8 +87,8 @@
79
87
  "build:tarball": "npm pack",
80
88
  "circularDepCheck": "madge --circular src/index.client.ts && madge --circular src/index.server.ts && madge --circular src/index.types.ts",
81
89
  "clean": "rimraf build coverage sentry-tanstackstart-react-*.tgz",
82
- "fix": "eslint . --format stylish --fix",
83
- "lint": "eslint . --format stylish",
90
+ "lint:fix": "OXLINT_TSGOLINT_DANGEROUSLY_SUPPRESS_PROGRAM_DIAGNOSTICS=true oxlint . --fix --type-aware",
91
+ "lint": "OXLINT_TSGOLINT_DANGEROUSLY_SUPPRESS_PROGRAM_DIAGNOSTICS=true oxlint . --type-aware",
84
92
  "lint:es-compatibility": "es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module",
85
93
  "test": "yarn test:unit",
86
94
  "test:unit": "vitest run",