@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betarena/ad-engine",
3
- "version": "0.0.72",
3
+ "version": "0.0.73",
4
4
  "private": false,
5
5
  "description": "Betarena ad-engine widget",
6
6
  "keywords": [
@@ -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
- <link rel="preconnect" href="https://fonts.googleapis.com">
798
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
799
- <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">
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
  <!--
@@ -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