File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,19 @@ The minimum supported version of Nuxt is `3.0.0`.
28
28
This package is a wrapper around ` @sentry/node ` for the server and ` @sentry/vue ` for the client side, with added
29
29
functionality related to Nuxt.
30
30
31
+ What is working:
32
+
33
+ - Error Reporting
34
+
35
+ What is partly working:
36
+
37
+ - Tracing by setting ` tracesSampleRate `
38
+
39
+ What is not yet(!) included:
40
+
41
+ - Source Maps
42
+ - Connected Traces
43
+
31
44
## Automatic Setup
32
45
33
46
todo: add wizard instructions
Original file line number Diff line number Diff line change 57
57
"nuxt" : " ^3.12.2"
58
58
},
59
59
"scripts" : {
60
- "build" : " run-p build:transpile build: types build:nuxt-module " ,
60
+ "build" : " run-s build:types build:transpile " ,
61
61
"build:dev" : " yarn build" ,
62
62
"build:nuxt-module" : " nuxt-module-build build --outDir build/module" ,
63
- "build:transpile" : " rollup -c rollup.npm.config.mjs" ,
63
+ "build:transpile" : " rollup -c rollup.npm.config.mjs && yarn build:nuxt-module " ,
64
64
"build:types" : " tsc -p tsconfig.types.json" ,
65
65
"build:watch" : " run-p build:transpile:watch build:types:watch" ,
66
66
"build:dev:watch" : " yarn build:watch" ,
84
84
"build:transpile" : {
85
85
"dependsOn" : [
86
86
" ^build:transpile" ,
87
- " ^build:types"
87
+ " ^build:types" ,
88
+ " build:types"
88
89
],
89
90
"outputs" : [
90
- " {projectRoot}/build" ,
91
+ " {projectRoot}/build/cjs" ,
92
+ " {projectRoot}/build/esm" ,
91
93
" {projectRoot}/build/module"
92
94
]
93
95
}
You can’t perform that action at this time.
0 commit comments