ultimate-jekyll-manager 0.0.208 → 0.0.210

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/CLAUDE.md CHANGED
@@ -444,6 +444,18 @@ $el.innerHTML = `${iconHTML} Text`;
444
444
 
445
445
  ## CSS Guidelines
446
446
 
447
+ ### Section Padding in Custom Pages
448
+
449
+ **DO NOT add padding classes to sections in custom frontend pages.**
450
+
451
+ UJ handles section padding automatically via the theme's layout system. When creating or editing custom frontend pages:
452
+
453
+ - ❌ DO NOT use `py-5`, `py-4`, `pt-5`, `pb-5`, `p-5`, etc. on `<section>` elements
454
+ - ❌ DO NOT add vertical padding to sections manually
455
+ - ✅ Let the UJ theme handle section spacing automatically
456
+
457
+ **The ONLY exception:** Add padding if the user EXPLICITLY requests it for a specific section.
458
+
447
459
  ### Theme-Adaptive Classes
448
460
 
449
461
  **DO NOT USE:** `bg-light`, `bg-dark`, `text-light`, `text-dark`
@@ -318,7 +318,7 @@ async function updateBundle() {
318
318
 
319
319
  // Log
320
320
  logger.log('Running bundle update...');
321
- await execute('bundle update', { log: true })
321
+ await execute('bundle update --all', { log: true })
322
322
  }
323
323
 
324
324
  function install(package, ver, location) {
@@ -22,7 +22,7 @@ group :jekyll_plugins do
22
22
  end
23
23
 
24
24
  # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
25
- gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
25
+ gem "tzinfo-data", platforms: [:windows, :jruby]
26
26
 
27
27
  # Performance-booster for watching directories on Windows
28
28
  gem "wdm", "~> 0.1.0" if Gem.win_platform?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.208",
3
+ "version": "0.0.210",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "engines": {
33
33
  "node": "22",
34
- "bundler": "2.4.21",
35
- "ruby": "4.0.0"
34
+ "bundler": "4.0.6",
35
+ "ruby": "4.0.1"
36
36
  },
37
37
  "repository": {
38
38
  "type": "git",