Add comprehensive development roadmap via GitHub Issues
Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
80
frontend/node_modules/storybook/dist/client-logger/index.cjs
generated
vendored
Normal file
80
frontend/node_modules/storybook/dist/client-logger/index.cjs
generated
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
"use strict";
|
||||
var s = Object.defineProperty;
|
||||
var L = Object.getOwnPropertyDescriptor;
|
||||
var v = Object.getOwnPropertyNames;
|
||||
var b = Object.prototype.hasOwnProperty;
|
||||
var t = (r, e) => s(r, "name", { value: e, configurable: !0 });
|
||||
var w = (r, e) => {
|
||||
for (var n in e)
|
||||
s(r, n, { get: e[n], enumerable: !0 });
|
||||
}, h = (r, e, n, i) => {
|
||||
if (e && typeof e == "object" || typeof e == "function")
|
||||
for (let c of v(e))
|
||||
!b.call(r, c) && c !== n && s(r, c, { get: () => e[c], enumerable: !(i = L(e, c)) || i.enumerable });
|
||||
return r;
|
||||
};
|
||||
var m = (r) => h(s({}, "__esModule", { value: !0 }), r);
|
||||
|
||||
// src/client-logger/index.ts
|
||||
var k = {};
|
||||
w(k, {
|
||||
deprecate: () => F,
|
||||
logger: () => y,
|
||||
once: () => o,
|
||||
pretty: () => a
|
||||
});
|
||||
module.exports = m(k);
|
||||
var p = require("@storybook/global");
|
||||
var { LOGLEVEL: x } = p.global, g = {
|
||||
trace: 1,
|
||||
debug: 2,
|
||||
info: 3,
|
||||
warn: 4,
|
||||
error: 5,
|
||||
silent: 10
|
||||
}, R = x, l = g[R] || g.info, y = {
|
||||
trace: /* @__PURE__ */ t((r, ...e) => {
|
||||
l <= g.trace && console.trace(r, ...e);
|
||||
}, "trace"),
|
||||
debug: /* @__PURE__ */ t((r, ...e) => {
|
||||
l <= g.debug && console.debug(r, ...e);
|
||||
}, "debug"),
|
||||
info: /* @__PURE__ */ t((r, ...e) => {
|
||||
l <= g.info && console.info(r, ...e);
|
||||
}, "info"),
|
||||
warn: /* @__PURE__ */ t((r, ...e) => {
|
||||
l <= g.warn && console.warn(r, ...e);
|
||||
}, "warn"),
|
||||
error: /* @__PURE__ */ t((r, ...e) => {
|
||||
l <= g.error && console.error(r, ...e);
|
||||
}, "error"),
|
||||
log: /* @__PURE__ */ t((r, ...e) => {
|
||||
l < g.silent && console.log(r, ...e);
|
||||
}, "log")
|
||||
}, d = /* @__PURE__ */ new Set(), o = /* @__PURE__ */ t((r) => (e, ...n) => {
|
||||
if (!d.has(e))
|
||||
return d.add(e), y[r](e, ...n);
|
||||
}, "once");
|
||||
o.clear = () => d.clear();
|
||||
o.trace = o("trace");
|
||||
o.debug = o("debug");
|
||||
o.info = o("info");
|
||||
o.warn = o("warn");
|
||||
o.error = o("error");
|
||||
o.log = o("log");
|
||||
var F = o("warn"), a = /* @__PURE__ */ t((r) => (...e) => {
|
||||
let n = [];
|
||||
if (e.length) {
|
||||
let i = /<span\s+style=(['"])([^'"]*)\1\s*>/gi, c = /<\/span>/gi, u;
|
||||
for (n.push(e[0].replace(i, "%c").replace(c, "%c")); u = i.exec(e[0]); )
|
||||
n.push(u[2]), n.push("");
|
||||
for (let f = 1; f < e.length; f++)
|
||||
n.push(e[f]);
|
||||
}
|
||||
y[r].apply(y, n);
|
||||
}, "pretty");
|
||||
a.trace = a("trace");
|
||||
a.debug = a("debug");
|
||||
a.info = a("info");
|
||||
a.warn = a("warn");
|
||||
a.error = a("error");
|
||||
30
frontend/node_modules/storybook/dist/client-logger/index.d.ts
generated
vendored
Normal file
30
frontend/node_modules/storybook/dist/client-logger/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
type LoggingFn = (message: any, ...args: any[]) => void;
|
||||
declare const logger: {
|
||||
readonly trace: (message: any, ...rest: any[]) => void;
|
||||
readonly debug: (message: any, ...rest: any[]) => void;
|
||||
readonly info: (message: any, ...rest: any[]) => void;
|
||||
readonly warn: (message: any, ...rest: any[]) => void;
|
||||
readonly error: (message: any, ...rest: any[]) => void;
|
||||
readonly log: (message: any, ...rest: any[]) => void;
|
||||
};
|
||||
declare const once: {
|
||||
(type: keyof typeof logger): (message: any, ...rest: any[]) => void;
|
||||
clear(): void;
|
||||
trace: (message: any, ...rest: any[]) => void;
|
||||
debug: (message: any, ...rest: any[]) => void;
|
||||
info: (message: any, ...rest: any[]) => void;
|
||||
warn: (message: any, ...rest: any[]) => void;
|
||||
error: (message: any, ...rest: any[]) => void;
|
||||
log: (message: any, ...rest: any[]) => void;
|
||||
};
|
||||
declare const deprecate: (message: any, ...rest: any[]) => void;
|
||||
declare const pretty: {
|
||||
(type: keyof typeof logger): (...args: Parameters<LoggingFn>) => void;
|
||||
trace: (message: any, ...args: any[]) => void;
|
||||
debug: (message: any, ...args: any[]) => void;
|
||||
info: (message: any, ...args: any[]) => void;
|
||||
warn: (message: any, ...args: any[]) => void;
|
||||
error: (message: any, ...args: any[]) => void;
|
||||
};
|
||||
|
||||
export { deprecate, logger, once, pretty };
|
||||
64
frontend/node_modules/storybook/dist/client-logger/index.js
generated
vendored
Normal file
64
frontend/node_modules/storybook/dist/client-logger/index.js
generated
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
var u = Object.defineProperty;
|
||||
var a = (r, e) => u(r, "name", { value: e, configurable: !0 });
|
||||
|
||||
// src/client-logger/index.ts
|
||||
import { global as p } from "@storybook/global";
|
||||
var { LOGLEVEL: L } = p, t = {
|
||||
trace: 1,
|
||||
debug: 2,
|
||||
info: 3,
|
||||
warn: 4,
|
||||
error: 5,
|
||||
silent: 10
|
||||
}, v = L, c = t[v] || t.info, i = {
|
||||
trace: /* @__PURE__ */ a((r, ...e) => {
|
||||
c <= t.trace && console.trace(r, ...e);
|
||||
}, "trace"),
|
||||
debug: /* @__PURE__ */ a((r, ...e) => {
|
||||
c <= t.debug && console.debug(r, ...e);
|
||||
}, "debug"),
|
||||
info: /* @__PURE__ */ a((r, ...e) => {
|
||||
c <= t.info && console.info(r, ...e);
|
||||
}, "info"),
|
||||
warn: /* @__PURE__ */ a((r, ...e) => {
|
||||
c <= t.warn && console.warn(r, ...e);
|
||||
}, "warn"),
|
||||
error: /* @__PURE__ */ a((r, ...e) => {
|
||||
c <= t.error && console.error(r, ...e);
|
||||
}, "error"),
|
||||
log: /* @__PURE__ */ a((r, ...e) => {
|
||||
c < t.silent && console.log(r, ...e);
|
||||
}, "log")
|
||||
}, s = /* @__PURE__ */ new Set(), o = /* @__PURE__ */ a((r) => (e, ...g) => {
|
||||
if (!s.has(e))
|
||||
return s.add(e), i[r](e, ...g);
|
||||
}, "once");
|
||||
o.clear = () => s.clear();
|
||||
o.trace = o("trace");
|
||||
o.debug = o("debug");
|
||||
o.info = o("info");
|
||||
o.warn = o("warn");
|
||||
o.error = o("error");
|
||||
o.log = o("log");
|
||||
var h = o("warn"), n = /* @__PURE__ */ a((r) => (...e) => {
|
||||
let g = [];
|
||||
if (e.length) {
|
||||
let y = /<span\s+style=(['"])([^'"]*)\1\s*>/gi, d = /<\/span>/gi, f;
|
||||
for (g.push(e[0].replace(y, "%c").replace(d, "%c")); f = y.exec(e[0]); )
|
||||
g.push(f[2]), g.push("");
|
||||
for (let l = 1; l < e.length; l++)
|
||||
g.push(e[l]);
|
||||
}
|
||||
i[r].apply(i, g);
|
||||
}, "pretty");
|
||||
n.trace = n("trace");
|
||||
n.debug = n("debug");
|
||||
n.info = n("info");
|
||||
n.warn = n("warn");
|
||||
n.error = n("error");
|
||||
export {
|
||||
h as deprecate,
|
||||
i as logger,
|
||||
o as once,
|
||||
n as pretty
|
||||
};
|
||||
Reference in New Issue
Block a user