Skip to content

Commit 25658db

Browse files
author
Luca Forstner
authored
Merge branch 'develop' into external-contributor/patch-antonis
2 parents 48dfa3c + 85f87e4 commit 25658db

File tree

4 files changed

+9
-56
lines changed

4 files changed

+9
-56
lines changed

.craft.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -142,23 +142,6 @@ targets:
142142
id: '@sentry-internal/eslint-config-sdk'
143143
includeNames: /^sentry-internal-eslint-config-sdk-\d.*\.tgz$/
144144

145-
# TODO(v9): Remove this target
146-
# NOTE: We publish the v8 layer under its own name so people on v8 can still get patches
147-
# whenever we release a new v8 version—otherwise we would overwrite the current major lambda layer.
148-
- name: aws-lambda-layer
149-
includeNames: /^sentry-node-serverless-\d+.\d+.\d+(-(beta|alpha|rc)\.\d+)?\.zip$/
150-
layerName: SentryNodeServerlessSDKv8
151-
compatibleRuntimes:
152-
- name: node
153-
versions:
154-
- nodejs10.x
155-
- nodejs12.x
156-
- nodejs14.x
157-
- nodejs16.x
158-
- nodejs18.x
159-
- nodejs20.x
160-
license: MIT
161-
162145
# AWS Lambda Layer target
163146
- name: aws-lambda-layer
164147
includeNames: /^sentry-node-serverless-\d+.\d+.\d+(-(beta|alpha|rc)\.\d+)?\.zip$/

biome.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,16 @@
3535
}
3636
},
3737
"ignore": [
38-
".vscode/*",
38+
".vscode",
3939
"**/*.json",
40-
".next/**/*",
41-
".svelte-kit/**/*",
4240
"**/fixtures/*/*.json",
4341
"**/*.min.js",
44-
".next/**",
45-
".svelte-kit/**",
46-
".angular/**",
42+
".next",
43+
".nuxt",
44+
".svelte-kit",
45+
".angular",
4746
"angular.json",
48-
"ember/instance-initializers/**",
47+
"ember/instance-initializers",
4948
"ember/types.d.ts",
5049
"solidstart/*.d.ts",
5150
"solidstart/client/",

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"clean": "rimraf tmp node_modules && yarn clean:test-applications && yarn clean:pnpm",
1717
"ci:build-matrix": "ts-node ./lib/getTestMatrix.ts",
1818
"ci:build-matrix-optional": "ts-node ./lib/getTestMatrix.ts --optional=true",
19-
"clean:test-applications": "rimraf --glob test-applications/**/{node_modules,dist,build,.next,.sveltekit,pnpm-lock.yaml,.last-run.json,test-results}",
19+
"clean:test-applications": "rimraf --glob test-applications/**/{node_modules,dist,build,.next,.nuxt,.sveltekit,pnpm-lock.yaml,.last-run.json,test-results}",
2020
"clean:pnpm": "pnpm store prune"
2121
},
2222
"devDependencies": {

packages/nuxt/README.md

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -130,35 +130,6 @@ export default defineNuxtConfig({
130130
});
131131
```
132132

133-
## Troubleshooting
133+
## Troubleshoot
134134

135-
When adding `sentry.server.config.ts`, you might get an error like this:
136-
"`Failed to register ESM hook import-in-the-middle/hook.mjs`". You can add an override (npm/pnpm) or a resolution (yarn)
137-
for `@vercel/nft` to fix this. This will add the `hook.mjs` file to your build output
138-
([Nitro issue here](https://github.com/unjs/nitro/issues/2703)).
139-
140-
For `npm`:
141-
142-
```json
143-
"overrides": {
144-
"@vercel/nft": "^0.27.4"
145-
}
146-
```
147-
148-
for `yarn`:
149-
150-
```json
151-
"resolutions": {
152-
"@vercel/nft": "^0.27.4"
153-
}
154-
```
155-
156-
or for `pnpm`:
157-
158-
```json
159-
"pnpm": {
160-
"overrides": {
161-
"@vercel/nft": "^0.27.4"
162-
}
163-
}
164-
```
135+
If you encounter any issues with error tracking or integrations, refer to the official [Sentry Nuxt SDK documentation](https://docs.sentry.io/platforms/javascript/guides/nuxt/). If the documentation does not provide the necessary information, consider opening an issue on GitHub.

0 commit comments

Comments
 (0)