@sentry/junior 0.15.2 → 0.17.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/bin/junior.mjs +0 -2
- package/dist/app.d.ts +1 -1
- package/dist/app.js +760 -725
- package/dist/{chunk-KTBQH6L5.js → chunk-4XWTSMRF.js} +1 -1
- package/dist/{chunk-5JHLDXBN.js → chunk-DTOS5CG4.js} +13 -4
- package/dist/{chunk-ESPIOJPM.js → chunk-XYOKYK6U.js} +1 -1
- package/dist/cli/check.js +2 -2
- package/dist/cli/init.js +1 -1
- package/dist/cli/snapshot-warmup.js +2 -2
- package/dist/nitro.js +90 -65
- package/package.json +7 -2
package/bin/junior.mjs
CHANGED
|
@@ -9,8 +9,6 @@ const { positionals } = parseArgs({
|
|
|
9
9
|
strict: false,
|
|
10
10
|
});
|
|
11
11
|
|
|
12
|
-
const command = positionals[0];
|
|
13
|
-
|
|
14
12
|
async function loadCliFunction(moduleName, exportName, unavailableMessage) {
|
|
15
13
|
const currentFile = fileURLToPath(import.meta.url);
|
|
16
14
|
const modulePath = path.join(
|
package/dist/app.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ interface JuniorAppOptions {
|
|
|
7
7
|
pluginPackages?: string[];
|
|
8
8
|
waitUntil?: WaitUntilFn;
|
|
9
9
|
}
|
|
10
|
-
/** Create a Hono app with all Junior routes
|
|
10
|
+
/** Create a Hono app with all Junior routes. */
|
|
11
11
|
declare function createApp(options?: JuniorAppOptions): Promise<Hono>;
|
|
12
12
|
|
|
13
13
|
export { type JuniorAppOptions, createApp };
|