@sentry/junior 0.11.1 → 0.12.1
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 +1 -8
- package/dist/app.js +252 -317
- package/dist/{chunk-WELSSJJU.js → chunk-IH4T747D.js} +26 -34
- package/dist/{chunk-IRE2LOEJ.js → chunk-SCG4PCEG.js} +1 -1
- package/dist/{chunk-ZYB3U7Q4.js → chunk-Y2LVMCQ3.js} +611 -42
- package/dist/chunk-ZLVM4R7R.js +25 -0
- package/dist/cli/check.js +2 -3
- package/dist/cli/init.js +14 -31
- package/dist/cli/snapshot-warmup.js +2 -3
- package/dist/vercel.d.ts +13 -0
- package/dist/vercel.js +9 -0
- package/package.json +2 -2
- package/dist/chunk-XH7TV4JS.js +0 -560
- package/dist/nitro.d.ts +0 -27
- package/dist/nitro.js +0 -62
package/README.md
CHANGED
|
@@ -23,14 +23,7 @@ const app = await createApp();
|
|
|
23
23
|
export default app;
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
`
|
|
27
|
-
|
|
28
|
-
```ts
|
|
29
|
-
import { juniorNitroConfig } from "@sentry/junior/nitro";
|
|
30
|
-
import { defineConfig } from "nitro";
|
|
31
|
-
|
|
32
|
-
export default defineConfig(juniorNitroConfig());
|
|
33
|
-
```
|
|
26
|
+
Run `junior init my-bot` to scaffold a complete project including `vercel.json` for Vercel deployment.
|
|
34
27
|
|
|
35
28
|
Installed `@sentry/junior-*` plugin packages are discovered automatically. Use `createApp({ pluginPackages: [...] })` only when you need to restrict discovery to a specific allowlist.
|
|
36
29
|
|