@sleekcms/cli 2.0.1 → 2.0.2
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -137,7 +137,7 @@ function scheduleUpdate(filePath) {
|
|
|
137
137
|
const code = await fs.readFile(filePath, "utf-8");
|
|
138
138
|
let template = await apiClient.patch(`/${file.id}`, { code: code || "foo bar", updated_at: file.updated_at });
|
|
139
139
|
fileMap[relativePath] = template.data;
|
|
140
|
-
console.log(`✅ Updated template for: ${relativePath}
|
|
140
|
+
console.log(`✅ Updated template for: ${relativePath}`);
|
|
141
141
|
|
|
142
142
|
delete pendingUpdates[file.id]; // Cleanup
|
|
143
143
|
} catch (error) {
|