gatsby-attainlabs-cms 1.0.13 → 1.0.14
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/gatsby-node.js +2 -2
- package/package.json +1 -1
package/gatsby-node.js
CHANGED
|
@@ -131,7 +131,7 @@ exports.onPreInit = async (_, pluginOptions) => {
|
|
|
131
131
|
localTargets.forEach(({ localPath, targetPath }) => {
|
|
132
132
|
if (!fs.existsSync(targetPath)) {
|
|
133
133
|
fs.mkdirSync(targetPath, { recursive: true });
|
|
134
|
-
console.log(`📂 Created directory: ${targetPath}`);
|
|
134
|
+
// console.log(`📂 Created directory: ${targetPath}`);
|
|
135
135
|
}
|
|
136
136
|
const fileName = path.basename(localPath);
|
|
137
137
|
const destFile = path.join(targetPath, fileName);
|
|
@@ -211,7 +211,7 @@ exports.onPreInit = async (_, pluginOptions) => {
|
|
|
211
211
|
|
|
212
212
|
if (!fs.existsSync(destDir)) {
|
|
213
213
|
fs.mkdirSync(destDir, { recursive: true });
|
|
214
|
-
console.log(`📂 Created directory: ${destDir}`);
|
|
214
|
+
// console.log(`📂 Created directory: ${destDir}`);
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
const doRequest = (url) => {
|