ultimate-jekyll-manager 0.0.28 → 0.0.29
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
|
|
@@ -170,13 +170,13 @@ function customTransform() {
|
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
// 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}`);
|
|
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}`);
|
|
180
180
|
|
|
181
181
|
// Run template if required
|
|
182
182
|
if (options.template) {
|