ultimate-jekyll-manager 0.0.164 → 0.0.166

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.
@@ -39,7 +39,7 @@
39
39
  </div>
40
40
 
41
41
  <!-- Actions -->
42
- <div class="text-center">
42
+ <div class="d-flex flex-column align-items-center">
43
43
  <a href="{{ site.url }}" class="modal-exit-button btn btn-primary btn-lg px-5 shadow-sm mb-1" data-bs-dismiss="modal">
44
44
  {% uj_icon "arrow-right", "me-2" %}
45
45
  <span class="modal-exit-button-text">Show me more</span>
@@ -45,15 +45,40 @@ const FILE_MAP = {
45
45
  skip: (file) => {
46
46
  // Get the name
47
47
  const name = path.basename(file.name, path.extname(file.name));
48
- const htmlFilePath = path.join(file.destination, `${name}.html`);
49
- const mdFilePath = path.join(file.destination, `${name}.md`);
50
- const jsonFilePath = path.join(file.destination, `${name}.json`);
48
+
49
+ // file.destination is relative to project root (e.g., "src/pages")
50
+ // Check if consuming project has equivalent file
51
+ const htmlFilePath = path.join(rootPathProject, file.destination, `${name}.html`);
52
+ const mdFilePath = path.join(rootPathProject, file.destination, `${name}.md`);
53
+ const jsonFilePath = path.join(rootPathProject, file.destination, `${name}.json`);
54
+ const htmlFileExists = jetpack.exists(htmlFilePath);
55
+ const mdFileExists = jetpack.exists(mdFilePath);
56
+ const jsonFileExists = jetpack.exists(jsonFilePath);
57
+ const anyExists = htmlFileExists || mdFileExists || jsonFileExists;
58
+
59
+ // Skip if consuming project has an equivalent file
60
+ return anyExists;
61
+ },
62
+ },
63
+ 'dist/**/*.{html,md,json}': {
64
+ skip: (file) => {
65
+ // Get the name and relative path within dist/
66
+ const name = path.basename(file.name, path.extname(file.name));
67
+
68
+ // file.destination is relative to project root (e.g., "dist/pages")
69
+ // We need to check if consuming project has equivalent in src/
70
+ // e.g., "dist/pages" -> "src/pages"
71
+ const srcPath = file.destination.replace(/^dist\//, 'src/');
72
+
73
+ const htmlFilePath = path.join(rootPathProject, srcPath, `${name}.html`);
74
+ const mdFilePath = path.join(rootPathProject, srcPath, `${name}.md`);
75
+ const jsonFilePath = path.join(rootPathProject, srcPath, `${name}.json`);
51
76
  const htmlFileExists = jetpack.exists(htmlFilePath);
52
77
  const mdFileExists = jetpack.exists(mdFilePath);
53
78
  const jsonFileExists = jetpack.exists(jsonFilePath);
54
79
  const anyExists = htmlFileExists || mdFileExists || jsonFileExists;
55
80
 
56
- // Skip if any of the files exist
81
+ // Skip if consuming project has an equivalent file in src/
57
82
  return anyExists;
58
83
  },
59
84
  },
@@ -3350,3 +3350,87 @@
3350
3350
  [debug] [2025-12-13T03:05:39.527Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3351
3351
  [debug] [2025-12-13T03:05:39.528Z] > 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"]
3352
3352
  [debug] [2025-12-13T03:05:39.528Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3353
+ [debug] [2025-12-14T01:51:07.850Z] > 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"]
3354
+ [debug] [2025-12-14T01:51:07.852Z] > 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"]
3355
+ [debug] [2025-12-14T01:51:07.852Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3356
+ [debug] [2025-12-14T01:51:07.852Z] > 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"]
3357
+ [debug] [2025-12-14T01:51:07.852Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3358
+ [debug] [2025-12-14T01:51:07.862Z] > 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"]
3359
+ [debug] [2025-12-14T01:51:07.862Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3360
+ [debug] [2025-12-14T01:51:07.854Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3361
+ [debug] [2025-12-14T01:51:07.854Z] > 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"]
3362
+ [debug] [2025-12-14T01:51:07.854Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3363
+ [debug] [2025-12-14T01:51:07.866Z] > 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"]
3364
+ [debug] [2025-12-14T01:51:07.867Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3365
+ [debug] [2025-12-14T01:51:07.948Z] > 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"]
3366
+ [debug] [2025-12-14T01:51:07.949Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3367
+ [debug] [2025-12-14T01:51:07.950Z] > 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"]
3368
+ [debug] [2025-12-14T01:51:07.950Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3369
+ [debug] [2025-12-14T01:51:07.952Z] > 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"]
3370
+ [debug] [2025-12-14T01:51:07.952Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3371
+ [debug] [2025-12-14T01:51:07.952Z] > 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"]
3372
+ [debug] [2025-12-14T01:51:07.952Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3373
+ [debug] [2025-12-14T01:51:07.963Z] > 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"]
3374
+ [debug] [2025-12-14T01:51:07.963Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3375
+ [debug] [2025-12-14T01:51:07.964Z] > 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"]
3376
+ [debug] [2025-12-14T01:51:07.965Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3377
+ [debug] [2025-12-14T01:51:07.966Z] > 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"]
3378
+ [debug] [2025-12-14T01:51:07.966Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3379
+ [debug] [2025-12-14T01:51:07.967Z] > 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"]
3380
+ [debug] [2025-12-14T01:51:07.967Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3381
+ [debug] [2025-12-15T04:17:23.666Z] > 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"]
3382
+ [debug] [2025-12-15T04:17:23.667Z] > 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"]
3383
+ [debug] [2025-12-15T04:17:23.668Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3384
+ [debug] [2025-12-15T04:17:23.668Z] > 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"]
3385
+ [debug] [2025-12-15T04:17:23.668Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3386
+ [debug] [2025-12-15T04:17:23.678Z] > 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"]
3387
+ [debug] [2025-12-15T04:17:23.678Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3388
+ [debug] [2025-12-15T04:17:23.669Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3389
+ [debug] [2025-12-15T04:17:23.669Z] > 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"]
3390
+ [debug] [2025-12-15T04:17:23.670Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3391
+ [debug] [2025-12-15T04:17:23.681Z] > 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"]
3392
+ [debug] [2025-12-15T04:17:23.681Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3393
+ [debug] [2025-12-15T04:17:23.758Z] > 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"]
3394
+ [debug] [2025-12-15T04:17:23.758Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3395
+ [debug] [2025-12-15T04:17:23.759Z] > 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"]
3396
+ [debug] [2025-12-15T04:17:23.759Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3397
+ [debug] [2025-12-15T04:17:23.761Z] > 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"]
3398
+ [debug] [2025-12-15T04:17:23.761Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3399
+ [debug] [2025-12-15T04:17:23.762Z] > 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"]
3400
+ [debug] [2025-12-15T04:17:23.762Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3401
+ [debug] [2025-12-15T04:17:23.766Z] > 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"]
3402
+ [debug] [2025-12-15T04:17:23.766Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3403
+ [debug] [2025-12-15T04:17:23.767Z] > 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"]
3404
+ [debug] [2025-12-15T04:17:23.767Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3405
+ [debug] [2025-12-15T04:17:23.768Z] > 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"]
3406
+ [debug] [2025-12-15T04:17:23.768Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3407
+ [debug] [2025-12-15T04:17:23.769Z] > 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"]
3408
+ [debug] [2025-12-15T04:17:23.769Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3409
+ [debug] [2025-12-15T04:18:53.295Z] > 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"]
3410
+ [debug] [2025-12-15T04:18:53.297Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3411
+ [debug] [2025-12-15T04:18:53.297Z] > 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"]
3412
+ [debug] [2025-12-15T04:18:53.297Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3413
+ [debug] [2025-12-15T04:18:53.305Z] > 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"]
3414
+ [debug] [2025-12-15T04:18:53.306Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3415
+ [debug] [2025-12-15T04:18:53.357Z] > 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"]
3416
+ [debug] [2025-12-15T04:18:53.360Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3417
+ [debug] [2025-12-15T04:18:53.360Z] > 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"]
3418
+ [debug] [2025-12-15T04:18:53.361Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3419
+ [debug] [2025-12-15T04:18:53.377Z] > 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"]
3420
+ [debug] [2025-12-15T04:18:53.377Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3421
+ [debug] [2025-12-15T04:18:53.384Z] > 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"]
3422
+ [debug] [2025-12-15T04:18:53.384Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3423
+ [debug] [2025-12-15T04:18:53.385Z] > 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"]
3424
+ [debug] [2025-12-15T04:18:53.385Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3425
+ [debug] [2025-12-15T04:18:53.387Z] > 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"]
3426
+ [debug] [2025-12-15T04:18:53.387Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3427
+ [debug] [2025-12-15T04:18:53.387Z] > 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"]
3428
+ [debug] [2025-12-15T04:18:53.387Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3429
+ [debug] [2025-12-15T04:18:53.452Z] > 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"]
3430
+ [debug] [2025-12-15T04:18:53.452Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3431
+ [debug] [2025-12-15T04:18:53.453Z] > 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"]
3432
+ [debug] [2025-12-15T04:18:53.453Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3433
+ [debug] [2025-12-15T04:18:53.455Z] > 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"]
3434
+ [debug] [2025-12-15T04:18:53.455Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
3435
+ [debug] [2025-12-15T04:18:53.455Z] > 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"]
3436
+ [debug] [2025-12-15T04:18:53.455Z] > 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.164",
3
+ "version": "0.0.166",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {