ultimate-jekyll-manager 0.0.114 → 0.0.116

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 (28) hide show
  1. package/_notes/LOGOS.md +1 -0
  2. package/dist/assets/css/ultimate-jekyll-manager.scss +11 -11
  3. package/dist/assets/themes/classy/css/components/_badges.scss +5 -5
  4. package/dist/build.js +2 -4
  5. package/dist/commands/setup.js +3 -3
  6. package/dist/defaults/_.gitignore +1 -0
  7. package/dist/defaults/dist/pages/test/libraries/{bootstrap-components.html → bootstrap.html} +1 -1
  8. package/dist/defaults/src/_includes/backend/sections/sidebar.json +2 -1
  9. package/dist/defaults/src/_includes/frontend/sections/footer.json +1 -0
  10. package/dist/defaults/src/_includes/frontend/sections/nav.json +2 -1
  11. package/dist/gulp/main.js +1 -3
  12. package/dist/gulp/tasks/defaults.js +5 -2
  13. package/dist/gulp/tasks/sass.js +1 -1
  14. package/dist/gulp/tasks/webpack.js +1 -1
  15. package/firebase-debug.log +56 -0
  16. package/package.json +1 -1
  17. /package/dist/assets/css/core/{alert.scss → _alert.scss} +0 -0
  18. /package/dist/assets/css/core/{animations.scss → _animations.scss} +0 -0
  19. /package/dist/assets/css/core/{bindings.scss → _bindings.scss} +0 -0
  20. /package/dist/assets/css/core/{chatsy.scss → _chatsy.scss} +0 -0
  21. /package/dist/assets/css/core/{cookieconsent.scss → _cookieconsent.scss} +0 -0
  22. /package/dist/assets/css/core/{custom-font-awesome.scss → _custom-font-awesome.scss} +0 -0
  23. /package/dist/assets/css/core/{exit-popup.scss → _exit-popup.scss} +0 -0
  24. /package/dist/assets/css/core/{initialize.scss → _initialize.scss} +0 -0
  25. /package/dist/assets/css/core/{lazy-loading.scss → _lazy-loading.scss} +0 -0
  26. /package/dist/assets/css/core/{social-sharing.scss → _social-sharing.scss} +0 -0
  27. /package/dist/assets/css/core/{utilities.scss → _utilities.scss} +0 -0
  28. /package/dist/defaults/{ultimate-jekyll-manager.json → config/ultimate-jekyll-manager.json} +0 -0
@@ -0,0 +1 @@
1
+ https://worldvectorlogo.com/search/wordmark
@@ -7,19 +7,19 @@
7
7
 
8
8
  // Import libraries
9
9
  // Important to do these BEFORE defaults so the animations, etc can be overridden
10
- // @use 'core/chatsy' as *;
11
- @use 'core/cookieconsent' as *;
12
- @use 'core/lazy-loading' as *;
13
- @use 'core/bindings' as *;
14
- @use 'core/social-sharing' as *;
15
- @use 'core/custom-font-awesome' as *;
10
+ // @use 'core/_chatsy' as *;
11
+ @use 'core/_cookieconsent' as *;
12
+ @use 'core/_lazy-loading' as *;
13
+ @use 'core/_bindings' as *;
14
+ @use 'core/_social-sharing' as *;
15
+ @use 'core/_custom-font-awesome' as *;
16
16
 
17
17
  // Import default Ultimate Jekyll Manager styles
18
- @use 'core/initialize' as *;
19
- @use 'core/utilities' as *;
20
- @use 'core/animations' as *;
21
- @use 'core/alert' as *;
22
- @use 'core/exit-popup' as *;
18
+ @use 'core/_initialize' as *;
19
+ @use 'core/_utilities' as *;
20
+ @use 'core/_animations' as *;
21
+ @use 'core/_alert' as *;
22
+ @use 'core/_exit-popup' as *;
23
23
 
24
24
  // Import page-specific styles
25
25
  @use '_page-specific' as *;
@@ -13,11 +13,11 @@
13
13
  }
14
14
 
15
15
  // Global fix - any element containing a badge should not clip
16
- * {
17
- &:has(.badge) {
18
- overflow: visible !important;
19
- }
20
- }
16
+ // * {
17
+ // &:has(.badge) {
18
+ // overflow: visible !important;
19
+ // }
20
+ // }
21
21
 
22
22
  // Base badge styling improvements
23
23
  .badge {
package/dist/build.js CHANGED
@@ -4,9 +4,8 @@ const jetpack = require('fs-jetpack');
4
4
  const fs = require('fs');
5
5
  const JSON5 = require('json5');
6
6
  const argv = require('yargs').argv;
7
- const { force } = require('node-powertools');
7
+ const { force, execute } = require('node-powertools');
8
8
  const yaml = require('js-yaml');
9
- const version = require('wonderful-version');
10
9
 
11
10
  // Global task tracking (shared across all Manager instances)
12
11
  global._ultimateJekyllActiveTasks = global._ultimateJekyllActiveTasks || new Map();
@@ -63,7 +62,6 @@ Manager.prototype.getArguments = Manager.getArguments;
63
62
 
64
63
  // Report build errors with notification
65
64
  Manager.reportBuildError = function (error, callback) {
66
- const { execute } = require('node-powertools');
67
65
  const logger = new (require('./lib/logger'))('build-error');
68
66
 
69
67
  // Send notification using notifly
@@ -137,7 +135,7 @@ Manager.prototype.getPackage = Manager.getPackage;
137
135
 
138
136
  // getUJMConfig: requires and parses ultimate-jekyll-manager.json
139
137
  Manager.getUJMConfig = function () {
140
- const configPath = path.join(process.cwd(), 'ultimate-jekyll-manager.json');
138
+ const configPath = path.join(process.cwd(), 'config', 'ultimate-jekyll-manager.json');
141
139
  return JSON5.parse(jetpack.read(configPath));
142
140
  }
143
141
  Manager.prototype.getUJMConfig = Manager.getUJMConfig;
@@ -117,9 +117,9 @@ module.exports = async function (options) {
117
117
  }
118
118
 
119
119
  // Update GitHub Pages settings
120
- if (options.updateGitHubPages) {
121
- await updateGitHubPages(options);
122
- }
120
+ // if (options.updateGitHubPages) {
121
+ // await updateGitHubPages(options);
122
+ // }
123
123
 
124
124
  // Check which locality we are using
125
125
  if (options.updateBundle && !Manager.isServer()) {
@@ -76,3 +76,4 @@ node_modules/
76
76
  /.temp
77
77
  /.cache
78
78
  /_legacy
79
+ START-COMMANDS.md
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  ### ALL PAGES ###
3
3
  layout: themes/[ site.theme.id ]/frontend/core/base
4
- permalink: /test/libraries/bootstrap-components
4
+ permalink: /test/libraries/bootstrap
5
5
 
6
6
  ### REGULAR PAGES ###
7
7
  sitemap:
@@ -1,7 +1,8 @@
1
1
  {
2
2
  logo: {
3
3
  href: '/',
4
- class: 'filter-adaptive'
4
+ class: 'filter-adaptive',
5
+ text: '{{ site.brand.name }}',
5
6
  },
6
7
  links: [
7
8
  {
@@ -2,6 +2,7 @@
2
2
  logo: {
3
3
  href: '/',
4
4
  class: 'filter-adaptive',
5
+ text: '{{ site.brand.name }}',
5
6
  description: '{{ site.meta.description }}',
6
7
  },
7
8
  links: [
@@ -1,7 +1,8 @@
1
1
  {
2
2
  logo: {
3
3
  href: '/',
4
- class: 'filter-adaptive'
4
+ class: 'filter-adaptive',
5
+ text: '{{ site.brand.name }}',
5
6
  },
6
7
  links: [
7
8
  {
package/dist/gulp/main.js CHANGED
@@ -2,11 +2,9 @@
2
2
  const Manager = new (require('../build.js'));
3
3
  const logger = Manager.logger('main');
4
4
  const argv = Manager.getArguments();
5
- const { series, parallel, watch } = require('gulp');
5
+ const { series, parallel } = require('gulp');
6
6
  const path = require('path');
7
- const jetpack = require('fs-jetpack');
8
7
  const glob = require('glob').globSync;
9
- const { execute } = require('node-powertools');
10
8
 
11
9
  // Load package
12
10
  const package = Manager.getPackage('main');
@@ -19,7 +19,7 @@ const rootPathPackage = Manager.getRootPath('main');
19
19
  const rootPathProject = Manager.getRootPath('project');
20
20
 
21
21
  // Load ultimate-jekyll-manager.json config
22
- const ujConfigPath = path.join(rootPathPackage, 'dist/defaults/ultimate-jekyll-manager.json');
22
+ const ujConfigPath = path.join(rootPathPackage, 'dist/defaults/config/ultimate-jekyll-manager.json');
23
23
  const ujConfig = jetpack.exists(ujConfigPath) ? JSON5.parse(jetpack.read(ujConfigPath)) : {};
24
24
 
25
25
  // Get clean versions
@@ -29,6 +29,9 @@ const cleanVersions = { versions: package.engines };
29
29
  // File MAP
30
30
  const FILE_MAP = {
31
31
  // Files to skip overwrite
32
+ '**/*.md': {
33
+ overwrite: false,
34
+ },
32
35
  'hooks/**/*': {
33
36
  overwrite: false,
34
37
  },
@@ -62,7 +65,7 @@ const FILE_MAP = {
62
65
  },
63
66
 
64
67
  // Config file with smart merging
65
- 'ultimate-jekyll-manager.json': {
68
+ 'config/ultimate-jekyll-manager.json': {
66
69
  overwrite: true,
67
70
  merge: true,
68
71
  },
@@ -107,7 +107,7 @@ function sass(complete) {
107
107
  path.resolve(rootPathProject, 'dist/assets/css'),
108
108
 
109
109
  // TODO: Add more load paths like node_modules for things like fontawesome
110
- // path.resolve(rootPathProject, 'node_modules'),
110
+ path.resolve(rootPathProject, 'node_modules'),
111
111
  ],
112
112
  // Suppress deprecation warnings from Bootstrap
113
113
  quietDeps: true,
@@ -7,7 +7,7 @@ const path = require('path');
7
7
  const jetpack = require('fs-jetpack');
8
8
  const wp = require('webpack');
9
9
  const ReplacePlugin = require('../plugins/webpack/replace.js');
10
- const StripDevBlocksPlugin = require('../plugins/webpack/strip-dev-blocks.js')
10
+ const StripDevBlocksPlugin = require('../plugins/webpack/strip-dev-blocks.js');
11
11
  const yaml = require('js-yaml');
12
12
  const version = require('wonderful-version');
13
13
 
@@ -338,3 +338,59 @@
338
338
  [debug] [2025-11-05T11:07:18.400Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
339
339
  [debug] [2025-11-05T11:07:18.401Z] > 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"]
340
340
  [debug] [2025-11-05T11:07:18.401Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
341
+ [debug] [2025-11-05T11:46:52.149Z] > 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"]
342
+ [debug] [2025-11-05T11:46:52.152Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
343
+ [debug] [2025-11-05T11:46:52.152Z] > 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"]
344
+ [debug] [2025-11-05T11:46:52.152Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
345
+ [debug] [2025-11-05T11:46:52.480Z] > 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"]
346
+ [debug] [2025-11-05T11:46:52.480Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
347
+ [debug] [2025-11-05T11:46:52.655Z] > 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"]
348
+ [debug] [2025-11-05T11:46:52.658Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
349
+ [debug] [2025-11-05T11:46:52.658Z] > 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"]
350
+ [debug] [2025-11-05T11:46:52.658Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
351
+ [debug] [2025-11-05T11:46:52.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"]
352
+ [debug] [2025-11-05T11:46:52.678Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
353
+ [debug] [2025-11-05T11:46:52.951Z] > 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"]
354
+ [debug] [2025-11-05T11:46:52.952Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
355
+ [debug] [2025-11-05T11:46:52.953Z] > 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"]
356
+ [debug] [2025-11-05T11:46:52.953Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
357
+ [debug] [2025-11-05T11:46:52.955Z] > 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"]
358
+ [debug] [2025-11-05T11:46:52.955Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
359
+ [debug] [2025-11-05T11:46:52.956Z] > 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"]
360
+ [debug] [2025-11-05T11:46:52.956Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
361
+ [debug] [2025-11-05T11:46:53.144Z] > 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"]
362
+ [debug] [2025-11-05T11:46:53.144Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
363
+ [debug] [2025-11-05T11:46:53.145Z] > 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"]
364
+ [debug] [2025-11-05T11:46:53.145Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
365
+ [debug] [2025-11-05T11:46:53.146Z] > 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"]
366
+ [debug] [2025-11-05T11:46:53.146Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
367
+ [debug] [2025-11-05T11:46:53.146Z] > 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"]
368
+ [debug] [2025-11-05T11:46:53.146Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
369
+ [debug] [2025-11-14T00:44:14.544Z] > 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"]
370
+ [debug] [2025-11-14T00:44:14.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"]
371
+ [debug] [2025-11-14T00:44:14.546Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
372
+ [debug] [2025-11-14T00:44:14.546Z] > 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"]
373
+ [debug] [2025-11-14T00:44:14.547Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
374
+ [debug] [2025-11-14T00:44:14.555Z] > 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"]
375
+ [debug] [2025-11-14T00:44:14.555Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
376
+ [debug] [2025-11-14T00:44:14.553Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
377
+ [debug] [2025-11-14T00:44:14.553Z] > 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"]
378
+ [debug] [2025-11-14T00:44:14.553Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
379
+ [debug] [2025-11-14T00:44:14.561Z] > 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"]
380
+ [debug] [2025-11-14T00:44:14.562Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
381
+ [debug] [2025-11-14T00:44:14.771Z] > 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"]
382
+ [debug] [2025-11-14T00:44:14.771Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
383
+ [debug] [2025-11-14T00:44:14.771Z] > 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"]
384
+ [debug] [2025-11-14T00:44:14.772Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
385
+ [debug] [2025-11-14T00:44:14.773Z] > 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"]
386
+ [debug] [2025-11-14T00:44:14.773Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
387
+ [debug] [2025-11-14T00:44:14.773Z] > 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"]
388
+ [debug] [2025-11-14T00:44:14.773Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
389
+ [debug] [2025-11-14T00:44:14.795Z] > 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"]
390
+ [debug] [2025-11-14T00:44:14.795Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
391
+ [debug] [2025-11-14T00:44:14.795Z] > 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"]
392
+ [debug] [2025-11-14T00:44:14.796Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
393
+ [debug] [2025-11-14T00:44:14.797Z] > 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"]
394
+ [debug] [2025-11-14T00:44:14.797Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
395
+ [debug] [2025-11-14T00:44:14.798Z] > 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"]
396
+ [debug] [2025-11-14T00:44:14.798Z] > 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.114",
3
+ "version": "0.0.116",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {