ultimate-jekyll-manager 0.0.28 → 0.0.30
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.
|
@@ -82,10 +82,6 @@ jobs:
|
|
|
82
82
|
run: |
|
|
83
83
|
echo "All files in the repo: "
|
|
84
84
|
ls -R *
|
|
85
|
-
- name: Attempt to log full GH_TOKEN
|
|
86
|
-
run: |
|
|
87
|
-
echo "GH_TOKEN: $GH_TOKEN"
|
|
88
|
-
echo "GH_TOKEN(4): ${GH_TOKEN:0:4}"
|
|
89
85
|
- name: Run node build
|
|
90
86
|
run: |
|
|
91
87
|
UJ_BUILD_MODE=true UJ_IS_SERVER=true npx uj setup && npm run build
|
|
@@ -52,6 +52,9 @@ const FILE_MAP = {
|
|
|
52
52
|
},
|
|
53
53
|
|
|
54
54
|
// Files to run templating on
|
|
55
|
+
'.github/workflows/build.yml': {
|
|
56
|
+
template: cleanVersions,
|
|
57
|
+
},
|
|
55
58
|
'.nvmrc': {
|
|
56
59
|
template: cleanVersions,
|
|
57
60
|
},
|
|
@@ -170,13 +173,13 @@ function customTransform() {
|
|
|
170
173
|
}
|
|
171
174
|
|
|
172
175
|
// Log
|
|
173
|
-
logger.log(`Processing file: ${relativePath}`);
|
|
174
|
-
logger.log(` _ORIG: ${file.path}`);
|
|
175
|
-
logger.log(` name: ${item.name}`);
|
|
176
|
-
logger.log(` destination: ${item.destination}`);
|
|
177
|
-
logger.log(` overwrite: ${options.overwrite}`);
|
|
178
|
-
logger.log(` skip: ${options.skip}`);
|
|
179
|
-
logger.log(` _FINAL: ${fullOutputPath}`);
|
|
176
|
+
// logger.log(`Processing file: ${relativePath}`);
|
|
177
|
+
// logger.log(` _ORIG: ${file.path}`);
|
|
178
|
+
// logger.log(` name: ${item.name}`);
|
|
179
|
+
// logger.log(` destination: ${item.destination}`);
|
|
180
|
+
// logger.log(` overwrite: ${options.overwrite}`);
|
|
181
|
+
// logger.log(` skip: ${options.skip}`);
|
|
182
|
+
// logger.log(` _FINAL: ${fullOutputPath}`);
|
|
180
183
|
|
|
181
184
|
// Run template if required
|
|
182
185
|
if (options.template) {
|