ultimate-jekyll-manager 0.0.158 → 0.0.159

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.
@@ -146,8 +146,10 @@ export default function (Manager, options) {
146
146
  function loadSrc(element, value) {
147
147
  const tagName = element.tagName.toLowerCase();
148
148
 
149
- // Add cache buster to URL
150
- value = addCacheBuster(value);
149
+ // Add cache buster to URL (skip for iframes - external embeds don't support it)
150
+ if (tagName !== 'iframe') {
151
+ value = addCacheBuster(value);
152
+ }
151
153
 
152
154
  // For images, test load first
153
155
  if (tagName === 'img') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.158",
3
+ "version": "0.0.159",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {