ultimate-jekyll-manager 0.0.144 → 0.0.146

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.
Files changed (38) hide show
  1. package/.playwright-mcp/page-2025-12-09T08-57-21-148Z.png +0 -0
  2. package/.playwright-mcp/page-2025-12-09T09-11-17-887Z.png +0 -0
  3. package/.playwright-mcp/page-2025-12-09T09-11-41-348Z.png +0 -0
  4. package/dist/assets/css/pages/extension/installed/index.scss +240 -0
  5. package/dist/assets/css/pages/status/index.scss +174 -0
  6. package/dist/assets/css/pages/updates/index.scss +13 -0
  7. package/dist/assets/css/pages/updates/update.scss +46 -0
  8. package/dist/assets/js/pages/extension/index.js +160 -0
  9. package/dist/assets/js/pages/status/index.js +508 -0
  10. package/dist/assets/js/pages/updates/index.js +30 -0
  11. package/dist/assets/js/pages/updates/update.js +34 -0
  12. package/dist/defaults/dist/_includes/core/head.html +9 -0
  13. package/dist/defaults/dist/_layouts/blueprint/extension/index.html +12 -0
  14. package/dist/defaults/dist/_layouts/blueprint/extension/installed.html +13 -0
  15. package/dist/defaults/dist/_layouts/blueprint/status.html +12 -0
  16. package/dist/defaults/dist/_layouts/blueprint/updates/index.html +12 -0
  17. package/dist/defaults/dist/_layouts/blueprint/updates/update.html +15 -0
  18. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/account/index.html +1 -1
  19. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/extension/index.html +434 -0
  20. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/extension/installed.html +188 -0
  21. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/payment/confirmation.html +1 -1
  22. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/status.html +296 -0
  23. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/updates/index.html +128 -0
  24. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/updates/update.html +122 -0
  25. package/dist/defaults/dist/_updates/v0.0.0.md +32 -0
  26. package/dist/defaults/dist/_updates/v0.0.1.md +64 -0
  27. package/dist/defaults/dist/pages/{extension.md → extension/index.html} +2 -2
  28. package/dist/defaults/dist/pages/extension/installed.html +7 -0
  29. package/dist/defaults/dist/pages/status.md +7 -0
  30. package/dist/defaults/dist/pages/updates/index.md +7 -0
  31. package/dist/defaults/dist/sitemap.html +8 -0
  32. package/dist/defaults/dist/sitemap.xml +4 -0
  33. package/dist/defaults/src/_config.yml +8 -0
  34. package/dist/gulp/main.js +4 -0
  35. package/dist/gulp/tasks/serve.js +16 -36
  36. package/firebase-debug.log +98 -0
  37. package/package.json +2 -1
  38. package/dist/defaults/dist/_layouts/blueprint/extension.md +0 -47
@@ -45,6 +45,10 @@ web_manager:
45
45
  {%- continue -%}
46
46
  {%- endif -%}
47
47
 
48
+ {%- if page.draft -%}
49
+ {%- continue -%}
50
+ {%- endif -%}
51
+
48
52
  {%- if page.url contains '.js' or page.url contains '.xml' or page.url contains '.json' -%}
49
53
  {%- continue -%}
50
54
  {%- endif -%}
@@ -91,6 +95,10 @@ web_manager:
91
95
  {%- continue -%}
92
96
  {%- endif -%}
93
97
 
98
+ {%- if page.draft -%}
99
+ {%- continue -%}
100
+ {%- endif -%}
101
+
94
102
  {%- if page.url contains '.js' or page.url contains '.xml' or page.url contains '.json' -%}
95
103
  {%- continue -%}
96
104
  {%- endif -%}
@@ -40,6 +40,10 @@ sitemap:
40
40
  {%- continue -%}
41
41
  {%- endif -%}
42
42
 
43
+ {%- if page.draft -%}
44
+ {%- continue -%}
45
+ {%- endif -%}
46
+
43
47
  {%- if page.url contains '.js' -%}
44
48
  {%- continue -%}
45
49
  {%- endif -%}
@@ -244,6 +244,9 @@ collections:
244
244
  team:
245
245
  title: Team Members
246
246
  output: true
247
+ updates:
248
+ title: Updates
249
+ output: true
247
250
 
248
251
  # Jekyll defaults
249
252
  defaults:
@@ -252,3 +255,8 @@ defaults:
252
255
  type: team
253
256
  values:
254
257
  permalink: /team/:title
258
+ - scope:
259
+ path: ""
260
+ type: updates
261
+ values:
262
+ permalink: /updates/:title
package/dist/gulp/main.js CHANGED
@@ -9,6 +9,10 @@ const glob = require('glob').globSync;
9
9
  // Load package
10
10
  const package = Manager.getPackage('main');
11
11
  const project = Manager.getPackage('project');
12
+ const projectRoot = Manager.getRootPath('project');
13
+
14
+ // Load .env file from project root
15
+ require('dotenv').config({ path: path.join(projectRoot, '.env') });
12
16
 
13
17
  // Log
14
18
  logger.log('Starting...', argv);
@@ -33,6 +33,10 @@ module.exports = async function serve(complete) {
33
33
  https: await getHttpsConfig(), // Enable HTTPS with mkcert or self-signed certificates
34
34
  server: {
35
35
  baseDir: '_site',
36
+ serveStaticOptions: {
37
+ extensions: ['html'], // Try .html extension automatically
38
+ redirect: false, // Don't add trailing slashes
39
+ },
36
40
  routes: {
37
41
  '/src': 'src' // Allow serving from src/ for media fallback
38
42
  },
@@ -215,6 +219,7 @@ async function processRequestMiddleware(req, res, next) {
215
219
  req.body = {};
216
220
 
217
221
  // If the file has no ext, log it
222
+ // logger.log(`----- ${pathname}`);
218
223
  if (!path.extname(pathname)) {
219
224
  logger.log(`Serving ${pathname}`);
220
225
  }
@@ -340,44 +345,19 @@ async function processRequestMiddleware(req, res, next) {
340
345
  });
341
346
  }
342
347
 
343
- // Check if the URL is missing a trailing slash and does not have an extension
344
- // console.log('---URL 1', req.url);
345
- if (
346
- (!pathname.endsWith('/') || pathname.endsWith('/blog/'))
347
- && !path.extname(pathname)
348
- ) {
349
- // Get the new URL
350
- const strippedPath = pathname.replace(/\/$/, '');
351
- const newURL = `${strippedPath}.html`;
352
-
353
- // Log
354
- // logger.log(`Rewriting ${pathname} to ${newURL}`);
355
-
356
- // Rewrite it to serve the .html extension
357
- req.url = newURL;
358
- }
359
- // console.log('---URL 2', req.url);
360
-
361
- // Special LOCAL case: Rewrite /blog to blog.html since Jekyll fucks it up locally (probably due to pagination)
362
- // Disaboed because we moved it to the jekyll task
363
- // if (pathname === '/blog') {
364
- // req.url = '/blog/index.html';
365
- // }
366
-
367
- // Strip query parameters and hash fragments from the URL for file path lookup
368
- const cleanUrl = req.url.split('?')[0].split('#')[0];
369
- const rawFilePath = path.join(rootPathProject, '_site', cleanUrl);
370
-
371
- // Special LOCAL case: Serve 404.html if the file does not exist
372
- if (!jetpack.exists(rawFilePath) && rawFilePath.endsWith('.html')) {
373
- // Log
374
- logger.log(`File not found: ${req.url}. Serving 404.html instead.`);
375
- req.url = '/404.html';
348
+ // Rewrite URLs to .html when needed
349
+ // serveStaticOptions handles simple cases, but not:
350
+ // - When a directory exists with the same name (e.g., /updates → /updates.html)
351
+ // - When the path looks like it has an extension but doesn't exist (e.g., /updates/v0.0.1)
352
+ const cleanPathname = pathname.split('?')[0].split('#')[0].replace(/\/$/, '');
353
+ const originalPath = path.join(rootPathProject, '_site', cleanPathname);
354
+ const htmlPath = path.join(rootPathProject, '_site', `${cleanPathname}.html`);
355
+ const originalExists = jetpack.exists(originalPath);
356
+
357
+ if (originalExists !== 'file' && jetpack.exists(htmlPath) === 'file') {
358
+ req.url = `${cleanPathname}.html`;
376
359
  }
377
360
 
378
- // LOG REQUEST
379
- // logger.log(`Serving file: ${req.url}`);
380
-
381
361
  // Continue
382
362
  return next();
383
363
  }
@@ -2818,3 +2818,101 @@
2818
2818
  [debug] [2025-12-08T22:04:31.256Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2819
2819
  [debug] [2025-12-08T22:04:31.257Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2820
2820
  [debug] [2025-12-08T22:04:31.257Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2821
+ [debug] [2025-12-09T07:35:19.981Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2822
+ [debug] [2025-12-09T07:35:19.982Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2823
+ [debug] [2025-12-09T07:35:19.984Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2824
+ [debug] [2025-12-09T07:35:19.984Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2825
+ [debug] [2025-12-09T07:35:19.984Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2826
+ [debug] [2025-12-09T07:35:19.993Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2827
+ [debug] [2025-12-09T07:35:19.993Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2828
+ [debug] [2025-12-09T07:35:19.983Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2829
+ [debug] [2025-12-09T07:35:19.984Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2830
+ [debug] [2025-12-09T07:35:19.984Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2831
+ [debug] [2025-12-09T07:35:19.993Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2832
+ [debug] [2025-12-09T07:35:19.994Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2833
+ [debug] [2025-12-09T07:35:20.049Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2834
+ [debug] [2025-12-09T07:35:20.049Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2835
+ [debug] [2025-12-09T07:35:20.051Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2836
+ [debug] [2025-12-09T07:35:20.052Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2837
+ [debug] [2025-12-09T07:35:20.054Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2838
+ [debug] [2025-12-09T07:35:20.054Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2839
+ [debug] [2025-12-09T07:35:20.055Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2840
+ [debug] [2025-12-09T07:35:20.056Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2841
+ [debug] [2025-12-09T07:35:20.057Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2842
+ [debug] [2025-12-09T07:35:20.057Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2843
+ [debug] [2025-12-09T07:35:20.059Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2844
+ [debug] [2025-12-09T07:35:20.059Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2845
+ [debug] [2025-12-09T07:35:20.061Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2846
+ [debug] [2025-12-09T07:35:20.061Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2847
+ [debug] [2025-12-09T07:35:20.062Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2848
+ [debug] [2025-12-09T07:35:20.062Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2849
+ [debug] [2025-12-09T07:48:28.331Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2850
+ [debug] [2025-12-09T07:48:28.342Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2851
+ [debug] [2025-12-09T07:48:28.335Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2852
+ [debug] [2025-12-09T07:48:28.335Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2853
+ [debug] [2025-12-09T07:48:28.335Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2854
+ [debug] [2025-12-09T07:48:28.361Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2855
+ [debug] [2025-12-09T07:48:28.362Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2856
+ [debug] [2025-12-09T07:48:28.344Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2857
+ [debug] [2025-12-09T07:48:28.344Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2858
+ [debug] [2025-12-09T07:48:28.344Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2859
+ [debug] [2025-12-09T07:48:28.373Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2860
+ [debug] [2025-12-09T07:48:28.373Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2861
+ [debug] [2025-12-09T07:48:28.456Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2862
+ [debug] [2025-12-09T07:48:28.456Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2863
+ [debug] [2025-12-09T07:48:28.457Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2864
+ [debug] [2025-12-09T07:48:28.457Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2865
+ [debug] [2025-12-09T07:48:28.460Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2866
+ [debug] [2025-12-09T07:48:28.460Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2867
+ [debug] [2025-12-09T07:48:28.461Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2868
+ [debug] [2025-12-09T07:48:28.461Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2869
+ [debug] [2025-12-09T07:48:28.465Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2870
+ [debug] [2025-12-09T07:48:28.465Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2871
+ [debug] [2025-12-09T07:48:28.467Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2872
+ [debug] [2025-12-09T07:48:28.467Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2873
+ [debug] [2025-12-09T07:48:28.469Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2874
+ [debug] [2025-12-09T07:48:28.470Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2875
+ [debug] [2025-12-09T07:48:28.470Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2876
+ [debug] [2025-12-09T07:48:28.470Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2877
+ [debug] [2025-12-09T07:48:30.019Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2878
+ [debug] [2025-12-09T07:48:30.022Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2879
+ [debug] [2025-12-09T07:48:30.023Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2880
+ [debug] [2025-12-09T07:48:30.023Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2881
+ [debug] [2025-12-09T07:48:30.042Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2882
+ [debug] [2025-12-09T07:48:30.042Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2883
+ [debug] [2025-12-09T07:48:30.110Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2884
+ [debug] [2025-12-09T07:48:30.110Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2885
+ [debug] [2025-12-09T07:48:30.111Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2886
+ [debug] [2025-12-09T07:48:30.111Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2887
+ [debug] [2025-12-09T07:48:30.113Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2888
+ [debug] [2025-12-09T07:48:30.113Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2889
+ [debug] [2025-12-09T07:48:30.114Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2890
+ [debug] [2025-12-09T07:48:30.114Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2891
+ [debug] [2025-12-09T08:38:54.551Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2892
+ [debug] [2025-12-09T08:38:54.565Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2893
+ [debug] [2025-12-09T08:38:54.556Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2894
+ [debug] [2025-12-09T08:38:54.556Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2895
+ [debug] [2025-12-09T08:38:54.556Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2896
+ [debug] [2025-12-09T08:38:54.570Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2897
+ [debug] [2025-12-09T08:38:54.571Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2898
+ [debug] [2025-12-09T08:38:54.567Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2899
+ [debug] [2025-12-09T08:38:54.567Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2900
+ [debug] [2025-12-09T08:38:54.568Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2901
+ [debug] [2025-12-09T08:38:54.580Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2902
+ [debug] [2025-12-09T08:38:54.581Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2903
+ [debug] [2025-12-09T08:38:54.643Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2904
+ [debug] [2025-12-09T08:38:54.643Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2905
+ [debug] [2025-12-09T08:38:54.644Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2906
+ [debug] [2025-12-09T08:38:54.644Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2907
+ [debug] [2025-12-09T08:38:54.647Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2908
+ [debug] [2025-12-09T08:38:54.647Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2909
+ [debug] [2025-12-09T08:38:54.648Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2910
+ [debug] [2025-12-09T08:38:54.648Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2911
+ [debug] [2025-12-09T08:38:54.675Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2912
+ [debug] [2025-12-09T08:38:54.676Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2913
+ [debug] [2025-12-09T08:38:54.677Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2914
+ [debug] [2025-12-09T08:38:54.677Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2915
+ [debug] [2025-12-09T08:38:54.682Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2916
+ [debug] [2025-12-09T08:38:54.682Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
2917
+ [debug] [2025-12-09T08:38:54.683Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
2918
+ [debug] [2025-12-09T08:38:54.683Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.144",
3
+ "version": "0.0.146",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -73,6 +73,7 @@
73
73
  "chalk": "^5.6.2",
74
74
  "cheerio": "^1.1.2",
75
75
  "chrome-launcher": "^1.2.1",
76
+ "dotenv": "^17.2.3",
76
77
  "fast-xml-parser": "^5.3.2",
77
78
  "fs-jetpack": "^5.1.0",
78
79
  "glob": "^13.0.0",
@@ -1,47 +0,0 @@
1
- ---
2
- ### ALL PAGES ###
3
- layout: themes/[ site.theme.id ]/frontend/core/base
4
-
5
- ### REGULAR PAGES ###
6
- meta:
7
- title: "Browser Extension - {{ site.brand.name }}"
8
- description: "The {{ site.brand.name }} browser extension is free to use on Chrome, Firefox & Opera. Get started for free today!"
9
- breadcrumb: "Extension"
10
- ---
11
-
12
- # {{ site.brand.name }} Browser Extension
13
- {{ page.resolved.meta.description }}
14
-
15
- <a class="btn btn-soft-primary download-parent-btn disabled" data-platform="chrome" disabled>Install on Chrome</a>
16
- <a class="btn btn-soft-primary download-parent-btn disabled" data-platform="firefox" disabled>Install on Firefox</a>
17
- <a class="btn btn-soft-primary download-parent-btn disabled" data-platform="opera" disabled>Install on Opera</a>
18
-
19
- Unlock the full potential of {{ site.brand.name }} right in your browser. With our powerful extension, you'll enjoy a seamless integration of our services into your web browsing experience.
20
-
21
- ## Key Features
22
-
23
- - **Extended Functionality:** The {{ site.brand.name }} browser extension is more than just an add-on. It's a key component of our ecosystem, designed to extend the functionality of our main service directly into your browser.
24
-
25
- - **Seamless Integration:** The extension integrates flawlessly with your browser, allowing you to access our features without disrupting your workflow. Whether you're researching, shopping, or just browsing, {{ site.brand.name }} is right there with you.
26
-
27
- - **Real-Time Updates:** Stay updated with real-time notifications. Never miss important alerts, updates, or opportunities. The {{ site.brand.name }} extension ensures you're always in the loop.
28
-
29
- - **Quick Access:** Access your {{ site.brand.name }} dashboard, control your settings, and manage your account directly from the extension. It's all about making our services more accessible and efficient for you.
30
-
31
- ## Easy Installation
32
-
33
- Installing the {{ site.brand.name }} extension is a breeze. Just click on the "Install" button and follow the simple prompts. Once installed, log in with your {{ site.brand.name }} account and you're all set!
34
-
35
- ## Secure and Reliable
36
-
37
- As with all our products, the {{ site.brandname }} browser extension is built with your security in mind. Trust in our robust encryption and data protection measures to keep your information safe.
38
-
39
- ## Support
40
-
41
- Having trouble with installation or have any questions? Our support team is available around the clock to assist you. Don't hesitate to reach out.
42
-
43
- # Enhance Your {{ site.brand.name }} Experience Today
44
-
45
- Upgrade your {{ site.brand.name }} experience with our powerful browser extension. Install now and explore the extended functionality of our services right from your browser. Welcome to a more efficient and integrated browsing experience with {{ site.brand.name }}.
46
-
47
- {{ content | uj_content_format }}