ultimate-jekyll-manager 0.0.255 → 0.0.256

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.
@@ -11,6 +11,12 @@ export default function (Manager, options) {
11
11
  // Get auth policy
12
12
  const config = webManager.config.auth.config;
13
13
  const policy = config.policy;
14
+
15
+ // Skip auth module entirely if policy is disabled (e.g., vert iframes)
16
+ if (policy === 'disabled') {
17
+ return;
18
+ }
19
+
14
20
  const authenticated = config.redirects.authenticated;
15
21
  const unauthenticated = config.redirects.unauthenticated;
16
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.255",
3
+ "version": "0.0.256",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {