@mono-labs/cli 0.0.232 → 0.0.234
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.
|
@@ -23,6 +23,8 @@ export function hasData(key) {
|
|
|
23
23
|
export function replaceTokens(str, env) {
|
|
24
24
|
if (typeof str !== 'string') return str;
|
|
25
25
|
|
|
26
|
+
console.log('→ replaceTokens called');
|
|
27
|
+
console.log('dataLayer:', dataLayer);
|
|
26
28
|
return str.replace(/\$\{([^}]+)\}|\$([A-Z0-9_]+)/g, (m, k1, k2) => {
|
|
27
29
|
const k = k1 || k2;
|
|
28
30
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const testFlag =
|
|
1
|
+
export const testFlag = true;
|