@bugbug-io/cli 13.39.1 → 13.39.2
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 -5
- package/bin/bugbug.mjs +4 -0
- package/dist/{NavigatorApp-WSJMM3OT.js → NavigatorApp-6ZB6F4RF.js} +4 -9
- package/dist/{app-A4ZLLFP5.js → app-L5OYLEKP.js} +5 -3
- package/dist/chunk-BSHFIPEX.js +1092 -0
- package/dist/chunk-GNCJ7Y4W.js +65666 -0
- package/dist/chunk-PR4QN5HX.js +43 -0
- package/dist/chunk-WZXVS2EO.js +9 -0
- package/dist/getMachineId-bsd-QKL32ATF.js +29 -0
- package/dist/getMachineId-darwin-MNPDTPSO.js +29 -0
- package/dist/getMachineId-linux-6BBPG345.js +23 -0
- package/dist/getMachineId-unsupported-A7ZABDRN.js +14 -0
- package/dist/getMachineId-win-WYJ4B4CV.js +31 -0
- package/dist/index.js +24 -194
- package/dist/render-RAJK5JCO.js +8 -0
- package/package.json +4 -5
- package/dist/chunk-NTNHB6R6.js +0 -6098
- package/dist/render-UGRPBJOT.js +0 -7
package/README.md
CHANGED
|
@@ -184,11 +184,7 @@ bugbug plugin --agent=cursor # Install skills + MCP into Cursor
|
|
|
184
184
|
bugbug plugin --agent=codex --dry-run # Show what would be installed, writing nothing
|
|
185
185
|
```
|
|
186
186
|
|
|
187
|
-
Supported `--agent` values: `cursor`, `claude`, `vscode`, `codex`, `
|
|
188
|
-
`copilot`.
|
|
189
|
-
Windsurf gets
|
|
190
|
-
an MCP server config plus the BugBug skills written into the agent's skills
|
|
191
|
-
directory.
|
|
187
|
+
Supported `--agent` values: `cursor`, `claude`, `vscode`, `codex`, `copilot`.
|
|
192
188
|
|
|
193
189
|
The token is resolved from your existing CLI auth (`bugbug login`, `--token`, or
|
|
194
190
|
`BUGBUG_API_TOKEN`).
|
package/bin/bugbug.mjs
CHANGED
|
@@ -58,7 +58,9 @@ import {
|
|
|
58
58
|
useTheme,
|
|
59
59
|
userCwd,
|
|
60
60
|
writeReportXml
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-GNCJ7Y4W.js";
|
|
62
|
+
import "./chunk-BSHFIPEX.js";
|
|
63
|
+
import "./chunk-PR4QN5HX.js";
|
|
62
64
|
|
|
63
65
|
// src/app/NavigatorApp.tsx
|
|
64
66
|
import { useState as useState17 } from "react";
|
|
@@ -2388,13 +2390,6 @@ var createNavigatorRouter = ({
|
|
|
2388
2390
|
),
|
|
2389
2391
|
{ initialEntries, initialIndex: initialEntries.length - 1 }
|
|
2390
2392
|
);
|
|
2391
|
-
let currentPathname = router.state.location.pathname;
|
|
2392
|
-
router.subscribe((state) => {
|
|
2393
|
-
const nextPathname = state.location.pathname;
|
|
2394
|
-
if (nextPathname === currentPathname) return;
|
|
2395
|
-
currentPathname = nextPathname;
|
|
2396
|
-
analytics.trackTuiNavigation(nextPathname);
|
|
2397
|
-
});
|
|
2398
2393
|
return router;
|
|
2399
2394
|
};
|
|
2400
2395
|
|
|
@@ -2407,4 +2402,4 @@ var NavigatorApp = ({ initialRoute, initialRouteState }) => {
|
|
|
2407
2402
|
export {
|
|
2408
2403
|
NavigatorApp
|
|
2409
2404
|
};
|
|
2410
|
-
//# sourceMappingURL=NavigatorApp-
|
|
2405
|
+
//# sourceMappingURL=NavigatorApp-6ZB6F4RF.js.map
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import "./chunk-PR4QN5HX.js";
|
|
2
|
+
|
|
1
3
|
// src/app/index.ts
|
|
2
4
|
var startNavigator = async (opts = {}) => {
|
|
3
5
|
const [{ render }, React, { NavigatorApp }] = await Promise.all([
|
|
4
|
-
import("./render-
|
|
6
|
+
import("./render-RAJK5JCO.js"),
|
|
5
7
|
import("react"),
|
|
6
|
-
import("./NavigatorApp-
|
|
8
|
+
import("./NavigatorApp-6ZB6F4RF.js")
|
|
7
9
|
]);
|
|
8
10
|
const element = React.createElement(
|
|
9
11
|
NavigatorApp,
|
|
@@ -18,4 +20,4 @@ var startNavigator = async (opts = {}) => {
|
|
|
18
20
|
export {
|
|
19
21
|
startNavigator
|
|
20
22
|
};
|
|
21
|
-
//# sourceMappingURL=app-
|
|
23
|
+
//# sourceMappingURL=app-L5OYLEKP.js.map
|