ultimate-jekyll-manager 0.0.19 → 0.0.20
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.
package/TODO.md
CHANGED
|
@@ -33,6 +33,8 @@ INCLUDE THIS in css build process
|
|
|
33
33
|
|
|
34
34
|
THINGS TO ADD
|
|
35
35
|
- auto cached translations
|
|
36
|
+
- sitemap for each translation?
|
|
37
|
+
- need to add HTML tags for each equivalent translation (not all pages have translations!!!!)
|
|
36
38
|
- each theme should have complex COMPONENTS to easily scaffold large parts of the site
|
|
37
39
|
- keep components consistent across themes so when we switch themes the components work still
|
|
38
40
|
- checkout pages SHOULD BE IN EACH WEBSITE
|
|
@@ -65,9 +65,10 @@ jobs:
|
|
|
65
65
|
echo "Ruby: $(ruby -v)"
|
|
66
66
|
echo "Bundler: $(bundle -v)"
|
|
67
67
|
echo "Gem: $(gem -v)"
|
|
68
|
+
echo "Jekyll: $(jekyll -v)"
|
|
68
69
|
echo "Node: $(node -v)"
|
|
69
70
|
echo "NPM: $(npm -v)"
|
|
70
|
-
echo "
|
|
71
|
+
echo "Ultimate Jekyll: $(npx uj version)"
|
|
71
72
|
echo -e "\n"
|
|
72
73
|
|
|
73
74
|
echo "💎 Gem Versions: "
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultimate-jekyll-manager",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"description": "Ultimate Jekyll dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"preinstall": "bundle install && bundle update",
|
|
26
26
|
"start": "npx uj setup && bundle exec npm run gulp --",
|
|
27
27
|
"gulp": "gulp --cwd ./ --gulpfile ./node_modules/ultimate-jekyll-manager/dist/gulp/main.js",
|
|
28
|
-
"build": "UJ_BUILD_MODE=true bundle exec npm run gulp -- build"
|
|
28
|
+
"build": "UJ_BUILD_MODE=true npx uj setup && bundle exec npm run gulp -- build"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": "22",
|