@withone/cli 1.27.0 → 1.27.1
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2489,7 +2489,7 @@ function validateSelectorReferences(flow2) {
|
|
|
2489
2489
|
for (const match of value.matchAll(SELECTOR_TOKEN_RE)) {
|
|
2490
2490
|
selectors.push(match[0]);
|
|
2491
2491
|
}
|
|
2492
|
-
const interpolated = value.matchAll(/\{\{(\$\.[^}]+)
|
|
2492
|
+
const interpolated = value.matchAll(/\{\{\s*(?:q\s+)?(\$\.[^}\s|]+)/g);
|
|
2493
2493
|
for (const match of interpolated) {
|
|
2494
2494
|
selectors.push(match[1]);
|
|
2495
2495
|
}
|