@betarena/ad-engine 0.0.72 → 0.0.73
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 +11 -11
- package/package.json +1 -1
- package/src/lib/Advert-Engine-Widget.svelte +13 -4
- package/src/lib/utils/debug.ts +0 -3
package/package.json
CHANGED
|
@@ -103,7 +103,12 @@
|
|
|
103
103
|
* @description
|
|
104
104
|
* 📝 Translation target
|
|
105
105
|
*/
|
|
106
|
-
strTranslationTarget = 'en'
|
|
106
|
+
strTranslationTarget = 'en',
|
|
107
|
+
/**
|
|
108
|
+
* @description
|
|
109
|
+
* 📝 Condition for testing
|
|
110
|
+
*/
|
|
111
|
+
isStandalone = true
|
|
107
112
|
;
|
|
108
113
|
|
|
109
114
|
/**
|
|
@@ -794,9 +799,13 @@
|
|
|
794
799
|
/>
|
|
795
800
|
|
|
796
801
|
<svelte:head>
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
802
|
+
|
|
803
|
+
{#if isStandalone}
|
|
804
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
805
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
806
|
+
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
|
807
|
+
{/if}
|
|
808
|
+
|
|
800
809
|
</svelte:head>
|
|
801
810
|
|
|
802
811
|
<!--
|
package/src/lib/utils/debug.ts
CHANGED
|
@@ -37,9 +37,6 @@ export function logger
|
|
|
37
37
|
listMsg: string[]
|
|
38
38
|
): void
|
|
39
39
|
{
|
|
40
|
-
// [🐞]
|
|
41
|
-
// eslint-disable-next-line no-console
|
|
42
|
-
console.log(chalk.hex('#FF7F50')('📦 [ad-engine] :: ─────────────────────────'));
|
|
43
40
|
for (const message of listMsg)
|
|
44
41
|
// [🐞]
|
|
45
42
|
// eslint-disable-next-line no-console
|