ultimate-jekyll-manager 0.0.252 → 0.0.254

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.
@@ -208,9 +208,6 @@ async function sendUserSignupMetadata(user, webManager) {
208
208
 
209
209
  // Build the payload
210
210
  const payload = {
211
- // Legacy support (can be removed once all servers are updated)
212
- affiliateCode: attribution.affiliate?.code || '',
213
-
214
211
  // New structure
215
212
  attribution: attribution,
216
213
  context: webManager.utilities().getContext(),
@@ -253,9 +253,9 @@ const createAdUnit = (config, $currentScript) => {
253
253
  $vertUnit.setAttribute('data-wm-bind', '@hide auth.account.subscription.product.id !== basic');
254
254
 
255
255
  // Apply size constraint if specified
256
- const maxHeight = resolveSize(config.size);
257
- if (maxHeight) {
258
- $vertUnit.style.maxHeight = maxHeight;
256
+ if (config.size) {
257
+ $vertUnit.setAttribute('data-vert-size', config.size);
258
+ $vertUnit.style.maxHeight = resolveSize(config.size);
259
259
  $vertUnit.style.overflow = 'hidden';
260
260
  }
261
261
 
@@ -237,7 +237,7 @@
237
237
  Remove with {% uj_icon "crown", "fa-sm text-success" %} <span class="text-success">Premium</span>
238
238
  </a>
239
239
  <!-- Mobile Sidebar Ad -->
240
- {% include /modules/adunits/adsense.html type="in-article" %}
240
+ {% include /modules/adunits/adsense.html type="in-article" vert-size="rectangle" %}
241
241
  {% endif %}
242
242
  </div>
243
243
  {% endif %}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.252",
3
+ "version": "0.0.254",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -77,7 +77,7 @@
77
77
  "dotenv": "^17.3.1",
78
78
  "fast-xml-parser": "^5.3.6",
79
79
  "fs-jetpack": "^5.1.0",
80
- "glob": "^13.0.3",
80
+ "glob": "^13.0.4",
81
81
  "gulp-clean-css": "^4.3.0",
82
82
  "gulp-filter": "^9.0.1",
83
83
  "gulp-postcss": "^10.0.0",
@@ -91,7 +91,7 @@
91
91
  "json5": "^2.2.3",
92
92
  "libsodium-wrappers": "^0.8.2",
93
93
  "lodash": "^4.17.23",
94
- "minimatch": "^10.2.0",
94
+ "minimatch": "^10.2.1",
95
95
  "node-powertools": "^2.3.2",
96
96
  "npm-api": "^1.0.1",
97
97
  "postcss": "^8.5.6",