@lensmcp/nx-plugin 1.18.3 → 1.18.6

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/lens-frontend.js CHANGED
@@ -1,205 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.spawnLensFrontend = spawnLensFrontend;
4
- exports.locateBin = locateBin;
5
- exports.resolveFirstExisting = resolveFirstExisting;
6
- exports.globalNodeModules = globalNodeModules;
7
- exports.findMcpBundle = findMcpBundle;
8
- exports.findDashboardBundle = findDashboardBundle;
9
- exports.findCaptureRunner = findCaptureRunner;
10
- exports.findBridgeBundle = findBridgeBundle;
11
- /**
12
- * Shared "run ONE frontend project under the lens" machinery.
13
- *
14
- * The SAME logic is needed in two places:
15
- *
16
- * 1. `agent-dev` (standalone, per-app) — `nx run web:agent-dev`. There it ALSO
17
- * spawns the cluster-wide singletons (the MCP server + the dashboard), since
18
- * nothing else owns them.
19
- * 2. `@lensmcp/cluster`'s gateway (`nx run gateway:serve`, `lens: true` apps).
20
- * There the gateway owns the singletons (ONE dashboard + ONE MCP server
21
- * cluster-wide), so a `lens:true` app must run ONLY its Vite + the lens
22
- * instrumentation + browser capture — never its own dashboard/MCP (they'd
23
- * collide on :4321 / :3000).
24
- *
25
- * This module factors out the per-app half — Vite (with `@lensmcp/vite-plugin`
26
- * already wired in the host's vite.config) + the optional browser-capture
27
- * runner — plus the bundle/bin resolvers both callers share. The singleton half
28
- * (dashboard + MCP) stays with each caller, because WHO owns the singletons is
29
- * exactly what differs between the two.
30
- *
31
- * No `@nx/devkit` import here on purpose: the cluster gateway calls this from a
32
- * plain runtime context, so the helper takes only POJOs + a `spawnChild`
33
- * callback the caller supplies (so children join the caller's lifecycle/teardown).
34
- */
35
- const node_child_process_1 = require("node:child_process");
36
- const node_fs_1 = require("node:fs");
37
- const node_path_1 = require("node:path");
38
- /**
39
- * Spawn ONE frontend project under the lens: its Vite dev server (lens plugin
40
- * already wired by `setup-vite`) + an optional browser-capture sidecar, both
41
- * publishing to the shared event bus. Does NOT spawn the dashboard or MCP
42
- * server — those are singletons the CALLER owns.
43
- *
44
- * Returns the resolved dev port/URL so the gateway can route its TCP upstream
45
- * at it. Throws only if Vite can't be located; capture is best-effort.
46
- */
47
- function spawnLensFrontend(options, spawnChild) {
48
- const log = options.log ?? ((l) => console.log(l));
49
- const { projectRoot, workspaceRoot, eventFile } = options;
50
- const chrome = options.chrome !== false;
51
- const headless = options.headless !== false;
52
- const viteBin = options.viteBin ?? locateBin('vite', [projectRoot, workspaceRoot]);
53
- if (!viteBin) {
54
- throw new Error('[lens] Could not find the vite binary in node_modules/.bin.');
55
- }
56
- // Pin the dev port so the gateway upstream + the capture target are
57
- // deterministic. When chrome capture is on we always fix it (strictPort).
58
- const devPort = options.port ?? (chrome ? 5173 : undefined);
59
- const viteArgs = [
60
- '--config',
61
- resolveFirstExisting(['vite.config.ts', 'vite.config.mts', 'vite.config.js', 'vite.config.mjs', 'vite.config.cts', 'vite.config.cjs'], projectRoot) ?? (0, node_path_1.join)(projectRoot, 'vite.config.ts'),
62
- projectRoot,
63
- ];
64
- if (devPort !== undefined) {
65
- viteArgs.push('--port', String(devPort), '--strictPort');
66
- }
67
- const bridgeEnv = { LENSMCP_EVENT_FILE: eventFile, ...(options.viteEnv ?? {}) };
68
- const labelPrefix = options.labelPrefix ?? '';
69
- log(`[lens] starting Vite for ${options.project ?? projectRoot}${devPort ? ` on :${devPort}` : ''}`);
70
- const vite = spawnChild(`${labelPrefix}vite`, viteBin, viteArgs, bridgeEnv);
71
- const devUrl = options.openUrl ?? (devPort ? `http://localhost:${devPort}/` : undefined);
72
- // ONE capture runner PER LENS FRONTEND — this duplication is deliberate, not
73
- // a bug to consolidate. Seeing two `capture-runner.js` processes is the normal
74
- // shape when the gateway hosts more than one lens frontend: its own
75
- // (`bootSingletonsAndApps`) plus each REGISTERED workspace's
76
- // (`hostWorkspaceApps`, model-A hosting). Each one captures a DIFFERENT dev
77
- // URL and appends to a DIFFERENT workspace's event bus (`eventFile`), so they
78
- // cannot be merged into a singleton without losing per-workspace isolation —
79
- // the same isolation the labelPrefix above exists to protect. What made the
80
- // duplication expensive was that each runner held a headless Chrome open for
81
- // the whole dev session; capture is demand-driven now (see
82
- // `@lensmcp/browser-capture`), so an idle runner owns no browser at all.
83
- if (chrome) {
84
- const captureRunner = findCaptureRunner(workspaceRoot);
85
- if (!captureRunner) {
86
- log("[lens] browser-capture runner not found — skipping live capture. Install the self-contained CLI: `npm i -D lensmcp` (it ships `bundled/capture-runner.js`).");
87
- }
88
- else if (!devUrl) {
89
- log('[lens] no dev URL/port resolved — skipping live capture.');
90
- }
91
- else {
92
- log(`[lens] starting browser capture → ${devUrl}`);
93
- spawnChild(`${labelPrefix}browser-capture`, process.execPath, [captureRunner], {
94
- ...bridgeEnv,
95
- LENSMCP_DEV_URL: devUrl,
96
- LENSMCP_TOKENS_FILE: (0, node_path_1.join)(workspaceRoot, 'lensmcp.tokens.json'),
97
- LENSMCP_RULES_FILE: (0, node_path_1.join)(workspaceRoot, 'lensmcp.rules.json'),
98
- LENSMCP_HEADLESS: headless === false ? 'false' : 'true',
99
- }, true, // optional — its exit never tears down the session
100
- { delayMs: 10_000, max: 5 });
101
- }
102
- }
103
- return {
104
- ...(devPort !== undefined ? { devPort } : {}),
105
- ...(devUrl ? { devUrl } : {}),
106
- vite,
107
- };
108
- }
109
- // ---------- bundle / bin resolvers (shared by both callers) ----------
110
- function locateBin(name, roots) {
111
- for (const root of roots) {
112
- const candidate = (0, node_path_1.join)(root, 'node_modules', '.bin', name);
113
- if ((0, node_fs_1.existsSync)(candidate))
114
- return candidate;
115
- }
116
- return undefined;
117
- }
118
- function resolveFirstExisting(names, root) {
119
- for (const n of names) {
120
- const p = (0, node_path_1.join)(root, n);
121
- if ((0, node_fs_1.existsSync)(p))
122
- return p;
123
- }
124
- return undefined;
125
- }
126
- /**
127
- * The global npm root — `npm i -g lensmcp` puts the bundled artefacts there,
128
- * not in the host workspace. Fast path derives it from the running node binary
129
- * (nvm/standard unix layout); `npm root -g` is the fallback. Cached for the
130
- * process lifetime.
131
- */
132
- let cachedGlobalRoot;
133
- function globalNodeModules() {
134
- if (cachedGlobalRoot !== undefined)
135
- return cachedGlobalRoot ?? undefined;
136
- const guess = (0, node_path_1.resolve)((0, node_path_1.dirname)(process.execPath), '..', 'lib', 'node_modules');
137
- if ((0, node_fs_1.existsSync)(guess)) {
138
- cachedGlobalRoot = guess;
139
- return guess;
140
- }
141
- try {
142
- const out = (0, node_child_process_1.execSync)('npm root -g', { encoding: 'utf8', timeout: 5000 }).trim();
143
- cachedGlobalRoot = out && (0, node_fs_1.existsSync)(out) ? out : null;
144
- }
145
- catch {
146
- cachedGlobalRoot = null;
147
- }
148
- return cachedGlobalRoot ?? undefined;
149
- }
150
- /**
151
- * Resolve the LensMCP MCP server bundle — the self-contained `lensmcp` CLI
152
- * bundle (`bundled/main.js`), else the in-repo dev build. See the doc on
153
- * `findCaptureRunner` for why we never reach into an unpublished `@lensmcp/*`.
154
- */
155
- function findMcpBundle(workspaceRoot) {
156
- const globalRoot = globalNodeModules();
157
- return firstExisting([
158
- (0, node_path_1.join)(workspaceRoot, 'node_modules', 'lensmcp', 'bundled', 'main.js'),
159
- ...(globalRoot ? [(0, node_path_1.join)(globalRoot, 'lensmcp', 'bundled', 'main.js')] : []),
160
- // In-repo dev build (four-bucket layout) — never in a host's node_modules.
161
- (0, node_path_1.join)(workspaceRoot, 'servers', 'lensmcp-mcp', 'dist', 'main.js'),
162
- ]);
163
- }
164
- /**
165
- * Resolve the lens DASHBOARD bundle — the human web view (`bundled/dashboard.js`,
166
- * default :4321). Same shipping story as the MCP bundle.
167
- */
168
- function findDashboardBundle(workspaceRoot) {
169
- const globalRoot = globalNodeModules();
170
- return firstExisting([
171
- (0, node_path_1.join)(workspaceRoot, 'node_modules', 'lensmcp', 'bundled', 'dashboard.js'),
172
- ...(globalRoot ? [(0, node_path_1.join)(globalRoot, 'lensmcp', 'bundled', 'dashboard.js')] : []),
173
- // In-repo dev build — never in a host's node_modules.
174
- (0, node_path_1.join)(workspaceRoot, 'servers', 'lensmcp-mcp', 'dist', 'dashboard.js'),
175
- ]);
176
- }
177
- function findCaptureRunner(workspaceRoot) {
178
- const globalRoot = globalNodeModules();
179
- return firstExisting([
180
- (0, node_path_1.join)(workspaceRoot, 'node_modules', 'lensmcp', 'bundled', 'capture-runner.js'),
181
- ...(globalRoot ? [(0, node_path_1.join)(globalRoot, 'lensmcp', 'bundled', 'capture-runner.js')] : []),
182
- // In-repo dev build — never in a host's node_modules.
183
- (0, node_path_1.join)(workspaceRoot, 'libs', 'browser-capture', 'dist', 'capture-runner.js'),
184
- ]);
185
- }
186
- /**
187
- * Resolve the standalone browser-event bridge runner — the self-contained
188
- * `lensmcp` package's `bundled/bridge.js`, else the in-repo dev build.
189
- */
190
- function findBridgeBundle(workspaceRoot) {
191
- const globalRoot = globalNodeModules();
192
- return firstExisting([
193
- (0, node_path_1.join)(workspaceRoot, 'node_modules', 'lensmcp', 'bundled', 'bridge.js'),
194
- ...(globalRoot ? [(0, node_path_1.join)(globalRoot, 'lensmcp', 'bundled', 'bridge.js')] : []),
195
- // In-repo dev build — never in a host's node_modules.
196
- (0, node_path_1.join)(workspaceRoot, 'libs', 'bridge', 'dist', 'main.js'),
197
- ]);
198
- }
199
- function firstExisting(candidates) {
200
- for (const c of candidates) {
201
- if ((0, node_fs_1.existsSync)(c))
202
- return c;
203
- }
204
- return undefined;
205
- }
1
+ "use strict";var _=Object.defineProperty;var s=(n,e)=>_(n,"name",{value:e,configurable:!0});var g=Object.defineProperty,t=s((n,e)=>g(n,"name",{value:e,configurable:!0}),"t");Object.defineProperty(exports,"__esModule",{value:!0}),exports.spawnLensFrontend=spawnLensFrontend,exports.locateBin=locateBin,exports.resolveFirstExisting=resolveFirstExisting,exports.globalNodeModules=globalNodeModules,exports.findMcpBundle=findMcpBundle,exports.findDashboardBundle=findDashboardBundle,exports.findCaptureRunner=findCaptureRunner,exports.findBridgeBundle=findBridgeBundle;const node_child_process_1=require("node:child_process"),node_fs_1=require("node:fs"),node_path_1=require("node:path");function spawnLensFrontend(n,e){const i=n.log??(l=>console.log(l)),{projectRoot:o,workspaceRoot:c,eventFile:v}=n,u=n.chrome!==!1,b=n.headless!==!1,p=n.viteBin??locateBin("vite",[o,c]);if(!p)throw new Error("[lens] Could not find the vite binary in node_modules/.bin.");const r=n.port??(u?5173:void 0),a=["--config",resolveFirstExisting(["vite.config.ts","vite.config.mts","vite.config.js","vite.config.mjs","vite.config.cts","vite.config.cjs"],o)??(0,node_path_1.join)(o,"vite.config.ts"),o];r!==void 0&&a.push("--port",String(r),"--strictPort");const f={LENSMCP_EVENT_FILE:v,...n.viteEnv??{}},j=n.labelPrefix??"";i(`[lens] starting Vite for ${n.project??o}${r?` on :${r}`:""}`);const m=e(`${j}vite`,p,a,f),d=n.openUrl??(r?`http://localhost:${r}/`:void 0);if(u){const l=findCaptureRunner(c);l?d?(i(`[lens] starting browser capture \u2192 ${d}`),e(`${j}browser-capture`,process.execPath,[l],{...f,LENSMCP_DEV_URL:d,LENSMCP_TOKENS_FILE:(0,node_path_1.join)(c,"lensmcp.tokens.json"),LENSMCP_RULES_FILE:(0,node_path_1.join)(c,"lensmcp.rules.json"),LENSMCP_HEADLESS:b===!1?"false":"true"},!0,{delayMs:1e4,max:5})):i("[lens] no dev URL/port resolved \u2014 skipping live capture."):i("[lens] browser-capture runner not found \u2014 skipping live capture. Install the self-contained CLI: `npm i -D lensmcp` (it ships `bundled/capture-runner.js`).")}return{...r!==void 0?{devPort:r}:{},...d?{devUrl:d}:{},vite:m}}s(spawnLensFrontend,"spawnLensFrontend"),t(spawnLensFrontend,"spawnLensFrontend");function locateBin(n,e){for(const i of e){const o=(0,node_path_1.join)(i,"node_modules",".bin",n);if((0,node_fs_1.existsSync)(o))return o}}s(locateBin,"locateBin"),t(locateBin,"locateBin");function resolveFirstExisting(n,e){for(const i of n){const o=(0,node_path_1.join)(e,i);if((0,node_fs_1.existsSync)(o))return o}}s(resolveFirstExisting,"resolveFirstExisting"),t(resolveFirstExisting,"resolveFirstExisting");let cachedGlobalRoot;function globalNodeModules(){if(cachedGlobalRoot!==void 0)return cachedGlobalRoot??void 0;const n=(0,node_path_1.resolve)((0,node_path_1.dirname)(process.execPath),"..","lib","node_modules");if((0,node_fs_1.existsSync)(n))return cachedGlobalRoot=n,n;try{const e=(0,node_child_process_1.execSync)("npm root -g",{encoding:"utf8",timeout:5e3}).trim();cachedGlobalRoot=e&&(0,node_fs_1.existsSync)(e)?e:null}catch{cachedGlobalRoot=null}return cachedGlobalRoot??void 0}s(globalNodeModules,"globalNodeModules"),t(globalNodeModules,"globalNodeModules");function findMcpBundle(n){const e=globalNodeModules();return firstExisting([(0,node_path_1.join)(n,"node_modules","lensmcp","bundled","main.js"),...e?[(0,node_path_1.join)(e,"lensmcp","bundled","main.js")]:[],(0,node_path_1.join)(n,"servers","lensmcp-mcp","dist","main.js")])}s(findMcpBundle,"findMcpBundle"),t(findMcpBundle,"findMcpBundle");function findDashboardBundle(n){const e=globalNodeModules();return firstExisting([(0,node_path_1.join)(n,"node_modules","lensmcp","bundled","dashboard.js"),...e?[(0,node_path_1.join)(e,"lensmcp","bundled","dashboard.js")]:[],(0,node_path_1.join)(n,"servers","lensmcp-mcp","dist","dashboard.js")])}s(findDashboardBundle,"findDashboardBundle"),t(findDashboardBundle,"findDashboardBundle");function findCaptureRunner(n){const e=globalNodeModules();return firstExisting([(0,node_path_1.join)(n,"node_modules","lensmcp","bundled","capture-runner.js"),...e?[(0,node_path_1.join)(e,"lensmcp","bundled","capture-runner.js")]:[],(0,node_path_1.join)(n,"libs","browser-capture","dist","capture-runner.js")])}s(findCaptureRunner,"findCaptureRunner"),t(findCaptureRunner,"findCaptureRunner");function findBridgeBundle(n){const e=globalNodeModules();return firstExisting([(0,node_path_1.join)(n,"node_modules","lensmcp","bundled","bridge.js"),...e?[(0,node_path_1.join)(e,"lensmcp","bundled","bridge.js")]:[],(0,node_path_1.join)(n,"libs","bridge","dist","main.js")])}s(findBridgeBundle,"findBridgeBundle"),t(findBridgeBundle,"findBridgeBundle");function firstExisting(n){for(const e of n)if((0,node_fs_1.existsSync)(e))return e}s(firstExisting,"firstExisting"),t(firstExisting,"firstExisting");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lensmcp/nx-plugin",
3
- "version": "1.18.3",
3
+ "version": "1.18.6",
4
4
  "main": "./index.js",
5
5
  "module": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -1 +0,0 @@
1
- {"version":3,"file":"agent-build.d.ts","sourceRoot":"","sources":["../../../src/executors/agent-build/agent-build.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAClD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEzD,UAAU,cAAc;IACtB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED;;;;;;;;;;;;GAYG;AACH,wBAA8B,kBAAkB,CAC9C,OAAO,EAAE,wBAAwB,EACjC,OAAO,EAAE,eAAe,GACvB,OAAO,CAAC,cAAc,CAAC,CAkEzB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"agent-dev.d.ts","sourceRoot":"","sources":["../../../src/executors/agent-dev/agent-dev.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAOlD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAEvD,UAAU,cAAc;IACtB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAA8B,gBAAgB,CAC5C,OAAO,EAAE,sBAAsB,EAC/B,OAAO,EAAE,eAAe,GACvB,OAAO,CAAC,cAAc,CAAC,CA+MzB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"agent-verify.d.ts","sourceRoot":"","sources":["../../../src/executors/agent-verify/agent-verify.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAClD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,UAAU,CAAC;AAE1D,UAAU,cAAc;IACtB,OAAO,EAAE,OAAO,CAAC;CAClB;AAmBD;;;;;;;;;;;;;GAaG;AACH,wBAA8B,mBAAmB,CAC/C,OAAO,EAAE,yBAAyB,EAClC,OAAO,EAAE,eAAe,GACvB,OAAO,CAAC,cAAc,CAAC,CAgHzB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../src/generators/init/init.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,IAAI,EAEV,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAgDpD,wBAAsB,aAAa,CACjC,IAAI,EAAE,IAAI,EACV,UAAU,GAAE,mBAAwB,GACnC,OAAO,CAAC,IAAI,CAAC,CAiFf;AAkCD,eAAe,aAAa,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"setup-nest.d.ts","sourceRoot":"","sources":["../../../src/generators/setup-nest/setup-nest.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,IAAI,EAEV,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAOzD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAsB,kBAAkB,CACtC,IAAI,EAAE,IAAI,EACV,UAAU,EAAE,wBAAwB,GACnC,OAAO,CAAC,IAAI,CAAC,CA+Cf;AAED,eAAe,kBAAkB,CAAC;AAYlC,wBAAgB,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAM1E;AAID;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAChC,GAAG,EAAE,MAAM,EACX,WAAW,EAAE,MAAM,GAClB,MAAM,GAAG,IAAI,CA0Bf;AAgID;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAiC9E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"setup-vite.d.ts","sourceRoot":"","sources":["../../../src/generators/setup-vite/setup-vite.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,IAAI,EAEV,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAIzD;;;;;;;;;;;;GAYG;AACH,wBAAsB,kBAAkB,CACtC,IAAI,EAAE,IAAI,EACV,UAAU,EAAE,wBAAwB,GACnC,OAAO,CAAC,IAAI,CAAC,CA8Cf;AAED,eAAe,kBAAkB,CAAC;AAoBlC;;;;;;;;;;;GAWG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAoC1D"}
package/index.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AAC5F,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAC/G,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AACvF,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAC1F,YAAY,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvE,YAAY,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAClF,YAAY,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAClF,YAAY,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAC9E,YAAY,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAClF,YAAY,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AACpF,OAAO,EAAE,aAAa,IAAI,OAAO,EAAE,MAAM,2BAA2B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"lens-frontend.d.ts","sourceRoot":"","sources":["../src/lens-frontend.ts"],"names":[],"mappings":"AA2BA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD;;mDAEmD;AACnD,MAAM,MAAM,UAAU,GAAG,CACvB,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EAAE,EACd,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,EACvB,QAAQ,CAAC,EAAE,OAAO,EAClB,OAAO,CAAC,EAAE;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,KACvC,YAAY,CAAC;AAElB,MAAM,WAAW,mBAAmB;IAClC,wEAAwE;IACxE,WAAW,EAAE,MAAM,CAAC;IACpB,yEAAyE;IACzE,aAAa,EAAE,MAAM,CAAC;IACtB,4CAA4C;IAC5C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,yEAAyE;IACzE,SAAS,EAAE,MAAM,CAAC;IAClB;mFAC+E;IAC/E,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,uEAAuE;IACvE,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,sCAAsC;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,+EAA+E;IAC/E,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,4EAA4E;IAC5E,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,oEAAoE;IACpE,OAAO,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IAC5B;;8GAE0G;IAC1G,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,oCAAoC;IACpC,GAAG,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9B;AAED,MAAM,WAAW,kBAAkB;IACjC,0DAA0D;IAC1D,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,oEAAoE;IACpE,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,8BAA8B;IAC9B,IAAI,EAAE,YAAY,CAAC;CACpB;AAED;;;;;;;;GAQG;AACH,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,mBAAmB,EAC5B,UAAU,EAAE,UAAU,GACrB,kBAAkB,CA6EpB;AAID,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS,CAM3E;AAED,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAMtF;AASD,wBAAgB,iBAAiB,IAAI,MAAM,GAAG,SAAS,CActD;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAQvE;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAQ7E;AAED,wBAAgB,iBAAiB,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAQ3E;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAQ1E"}