@bagelink/workspace 1.9.156 → 1.9.164
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 +1 -1
- package/dist/bin/bgl.mjs +1 -1
- package/package.json +1 -1
- package/src/dev.ts +1 -1
package/dist/bin/bgl.cjs
CHANGED
|
@@ -128,7 +128,7 @@ async function runDev(filter, additionalArgs = []) {
|
|
|
128
128
|
const portMatch = line.match(/Local:\s+http:\/\/localhost:(\d+)/);
|
|
129
129
|
if (portMatch) {
|
|
130
130
|
const port = Number.parseInt(portMatch[1], 10);
|
|
131
|
-
const projectInLine = line.match(/^(\w+)\s+dev:/);
|
|
131
|
+
const projectInLine = line.match(/^([\w-]+)\s+dev:/);
|
|
132
132
|
if (projectInLine) {
|
|
133
133
|
const name = projectInLine[1];
|
|
134
134
|
const info = servers.get(name);
|
package/dist/bin/bgl.mjs
CHANGED
|
@@ -121,7 +121,7 @@ async function runDev(filter, additionalArgs = []) {
|
|
|
121
121
|
const portMatch = line.match(/Local:\s+http:\/\/localhost:(\d+)/);
|
|
122
122
|
if (portMatch) {
|
|
123
123
|
const port = Number.parseInt(portMatch[1], 10);
|
|
124
|
-
const projectInLine = line.match(/^(\w+)\s+dev:/);
|
|
124
|
+
const projectInLine = line.match(/^([\w-]+)\s+dev:/);
|
|
125
125
|
if (projectInLine) {
|
|
126
126
|
const name = projectInLine[1];
|
|
127
127
|
const info = servers.get(name);
|
package/package.json
CHANGED
package/src/dev.ts
CHANGED
|
@@ -98,7 +98,7 @@ export async function runDev(
|
|
|
98
98
|
const port = Number.parseInt(portMatch[1], 10)
|
|
99
99
|
|
|
100
100
|
// Extract project name from this line
|
|
101
|
-
const projectInLine = line.match(/^(\w+)\s+dev:/)
|
|
101
|
+
const projectInLine = line.match(/^([\w-]+)\s+dev:/)
|
|
102
102
|
if (projectInLine) {
|
|
103
103
|
const name = projectInLine[1]
|
|
104
104
|
const info = servers.get(name)
|