crumbtrail 0.1.1 → 0.2.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/LICENSE +21 -0
- package/dist/bug-widget-LGIRLS76-WB3MQGAH.js +199 -0
- package/dist/chunk-MZDASWQ7.js +1570 -0
- package/dist/cli.cjs +214 -6044
- package/dist/cli.d.cts +2 -2
- package/dist/cli.d.ts +2 -2
- package/dist/cli.js +1 -1
- package/dist/{executor-BKiOvIvD.d.cts → executor-CW6Q5mhH.d.cts} +1 -1
- package/dist/{executor-BKiOvIvD.d.ts → executor-CW6Q5mhH.d.ts} +1 -1
- package/dist/index.cjs +120 -5950
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +8 -4
- package/dist/chunk-HAP4DPWC.js +0 -7423
package/dist/cli.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { R as Recipe, D as DetectResult, P as PackageManager, b as buildPlan, e as executePlan } from './executor-
|
|
3
|
-
import { Stack } from 'crumbtrail-
|
|
2
|
+
import { R as Recipe, D as DetectResult, P as PackageManager, b as buildPlan, e as executePlan } from './executor-CW6Q5mhH.cjs';
|
|
3
|
+
import { Stack } from 'crumbtrail-core';
|
|
4
4
|
|
|
5
5
|
/** Output sink — swappable in tests to capture lines instead of writing stdout. */
|
|
6
6
|
interface Ui {
|
package/dist/cli.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { R as Recipe, D as DetectResult, P as PackageManager, b as buildPlan, e as executePlan } from './executor-
|
|
3
|
-
import { Stack } from 'crumbtrail-
|
|
2
|
+
import { R as Recipe, D as DetectResult, P as PackageManager, b as buildPlan, e as executePlan } from './executor-CW6Q5mhH.js';
|
|
3
|
+
import { Stack } from 'crumbtrail-core';
|
|
4
4
|
|
|
5
5
|
/** Output sink — swappable in tests to capture lines instead of writing stdout. */
|
|
6
6
|
interface Ui {
|
package/dist/cli.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Stack } from 'crumbtrail-
|
|
1
|
+
import { Stack } from 'crumbtrail-core';
|
|
2
2
|
|
|
3
3
|
/** Injection recipes, ordered most-specific-first during detection. */
|
|
4
4
|
type Recipe = "tauri" | "next" | "sveltekit" | "nuxt" | "remix" | "astro" | "angular" | "vite-spa" | "nestjs" | "express" | "hono" | "fastify" | "react-native" | "node" | "otlp";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Stack } from 'crumbtrail-
|
|
1
|
+
import { Stack } from 'crumbtrail-core';
|
|
2
2
|
|
|
3
3
|
/** Injection recipes, ordered most-specific-first during detection. */
|
|
4
4
|
type Recipe = "tauri" | "next" | "sveltekit" | "nuxt" | "remix" | "astro" | "angular" | "vite-spa" | "nestjs" | "express" | "hono" | "fastify" | "react-native" | "node" | "otlp";
|