@bagelink/workspace 1.7.24 → 1.7.25

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/dist/bin/bgl.cjs CHANGED
@@ -2,7 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  const process = require('node:process');
5
- const workspace = require('../shared/workspace.DL_Ay2mI.cjs');
5
+ const workspace = require('../shared/workspace.hvTUKTmw.cjs');
6
6
  require('node:fs');
7
7
  require('node:path');
8
8
  require('prompts');
package/dist/bin/bgl.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import process from 'node:process';
3
- import { k as initWorkspace, g as generateWorkspaceConfig, j as addProject, l as listProjects, i as isWorkspace, e as setupLint, h as generateSDKForWorkspace, f as generateSDK, r as runDev } from '../shared/workspace.CJj5dITU.mjs';
3
+ import { k as initWorkspace, g as generateWorkspaceConfig, j as addProject, l as listProjects, i as isWorkspace, e as setupLint, h as generateSDKForWorkspace, f as generateSDK, r as runDev } from '../shared/workspace.DjVIGwgl.mjs';
4
4
  import 'node:fs';
5
5
  import 'node:path';
6
6
  import 'prompts';
package/dist/index.cjs CHANGED
@@ -3,7 +3,7 @@
3
3
  const node_fs = require('node:fs');
4
4
  const node_path = require('node:path');
5
5
  const process = require('node:process');
6
- const workspace = require('./shared/workspace.DL_Ay2mI.cjs');
6
+ const workspace = require('./shared/workspace.hvTUKTmw.cjs');
7
7
  require('prompts');
8
8
  require('node:child_process');
9
9
 
package/dist/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
1
  import { existsSync } from 'node:fs';
2
2
  import { resolve, join } from 'node:path';
3
3
  import process from 'node:process';
4
- import { g as generateWorkspaceConfig, s as setBuildEnvVars, w as writeNetlifyConfig } from './shared/workspace.CJj5dITU.mjs';
5
- export { j as addProject, a as generateNetlifyConfig, b as generateNetlifyRedirect, f as generateSDK, h as generateSDKForWorkspace, c as generateWorkspaceConfigSync, d as getWorkspaceInfo, k as initWorkspace, i as isWorkspace, l as listProjects, r as runDev, e as setupLint } from './shared/workspace.CJj5dITU.mjs';
4
+ import { g as generateWorkspaceConfig, s as setBuildEnvVars, w as writeNetlifyConfig } from './shared/workspace.DjVIGwgl.mjs';
5
+ export { j as addProject, a as generateNetlifyConfig, b as generateNetlifyRedirect, f as generateSDK, h as generateSDKForWorkspace, c as generateWorkspaceConfigSync, d as getWorkspaceInfo, k as initWorkspace, i as isWorkspace, l as listProjects, r as runDev, e as setupLint } from './shared/workspace.DjVIGwgl.mjs';
6
6
  import 'prompts';
7
7
  import 'node:child_process';
8
8
 
@@ -323,6 +323,9 @@ async function runDev(filter = "./[!shared]*") {
323
323
  if (!line.trim()) return;
324
324
  if (seenLines.has(line)) return;
325
325
  seenLines.add(line);
326
+ if (seenLines.size <= 10) {
327
+ console.log(`${colors.dim}[DEBUG] Line: "${line}"${colors.reset}`);
328
+ }
326
329
  const projectMatch = line.match(/^(\w+)\s+dev\s+\$/);
327
330
  if (projectMatch) {
328
331
  const name = projectMatch[1];
@@ -330,6 +330,9 @@ async function runDev(filter = "./[!shared]*") {
330
330
  if (!line.trim()) return;
331
331
  if (seenLines.has(line)) return;
332
332
  seenLines.add(line);
333
+ if (seenLines.size <= 10) {
334
+ console.log(`${colors.dim}[DEBUG] Line: "${line}"${colors.reset}`);
335
+ }
333
336
  const projectMatch = line.match(/^(\w+)\s+dev\s+\$/);
334
337
  if (projectMatch) {
335
338
  const name = projectMatch[1];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/workspace",
3
3
  "type": "module",
4
- "version": "1.7.24",
4
+ "version": "1.7.25",
5
5
  "description": "Monorepo workspace tooling for Bagel projects with proxy and config management",
6
6
  "author": {
7
7
  "name": "Bagel Studio",
package/src/dev.ts CHANGED
@@ -61,6 +61,11 @@ export async function runDev(filter = './[!shared]*') {
61
61
  if (seenLines.has(line)) return
62
62
  seenLines.add(line)
63
63
 
64
+ // DEBUG: Show first 10 unique lines to understand the format
65
+ if (seenLines.size <= 10) {
66
+ console.log(`${colors.dim}[DEBUG] Line: "${line}"${colors.reset}`)
67
+ }
68
+
64
69
  // Extract project name from "project dev $ vite"
65
70
  const projectMatch = line.match(/^(\w+)\s+dev\s+\$/)
66
71
  if (projectMatch) {