@magentrix-corp/magentrix-cli 1.1.3 → 1.1.4

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.
@@ -670,27 +670,42 @@ export const runPublish = async (options = {}) => {
670
670
  });
671
671
  }
672
672
 
673
- // Step 9: Filter out redundant file deletions
673
+ // Step 9: Filter out redundant file and folder deletions
674
674
  const foldersBeingDeleted = actionQueue
675
675
  .filter(a => a.action === 'delete_folder')
676
676
  .map(a => a.folderPath);
677
677
 
678
678
  const filteredActionQueue = actionQueue.filter(action => {
679
+ // Filter out files inside folders being deleted
679
680
  if (action.action === 'delete_static_asset' && action.filePath) {
680
- // Check if this file's directory is inside any folder being deleted
681
681
  const fileDir = path.dirname(action.filePath);
682
682
  for (const deletedFolder of foldersBeingDeleted) {
683
- // Use path.normalize to handle trailing slashes and ensure proper comparison
684
683
  const normalizedFileDir = path.normalize(fileDir);
685
684
  const normalizedDeletedFolder = path.normalize(deletedFolder);
686
685
 
687
- // Check if file is inside the deleted folder (or is the folder itself)
688
686
  if (normalizedFileDir === normalizedDeletedFolder ||
689
687
  normalizedFileDir.startsWith(normalizedDeletedFolder + path.sep)) {
690
688
  return false; // Skip - covered by folder deletion
691
689
  }
692
690
  }
693
691
  }
692
+
693
+ // Filter out child folders inside folders being deleted
694
+ if (action.action === 'delete_folder' && action.folderPath) {
695
+ for (const deletedFolder of foldersBeingDeleted) {
696
+ // Don't compare a folder to itself
697
+ if (action.folderPath === deletedFolder) continue;
698
+
699
+ const normalizedChildFolder = path.normalize(action.folderPath);
700
+ const normalizedParentFolder = path.normalize(deletedFolder);
701
+
702
+ // Check if this folder is inside another folder being deleted
703
+ if (normalizedChildFolder.startsWith(normalizedParentFolder + path.sep)) {
704
+ return false; // Skip - covered by parent folder deletion
705
+ }
706
+ }
707
+ }
708
+
694
709
  return true;
695
710
  });
696
711
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magentrix-corp/magentrix-cli",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "CLI tool for synchronizing local files with Magentrix cloud platform",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -12,13 +12,13 @@ import { EXPORT_ROOT } from '../vars/global.js';
12
12
 
13
13
  /**
14
14
  * Convert a local asset path to an API path by adding the 'contents' prefix
15
- * and normalizing to lowercase with forward slashes.
15
+ * and normalizing with forward slashes (preserves original casing).
16
16
  *
17
- * @param {string} localPath - Local file path (e.g., "src/Assets/images/logo.png")
18
- * @returns {string} API path (e.g., "/contents/assets/images")
17
+ * @param {string} localPath - Local file path (e.g., "src/Assets/Images/Logo.png")
18
+ * @returns {string} API path (e.g., "/contents/assets/Images")
19
19
  *
20
20
  * @example
21
- * toApiPath("src/Assets/images/logo.png") // "/contents/assets/images"
21
+ * toApiPath("src/Assets/Images/Logo.png") // "/contents/assets/Images"
22
22
  * toApiPath("src/Assets") // "/contents/assets"
23
23
  */
24
24
  export const toApiPath = (localPath) => {
@@ -31,11 +31,11 @@ export const toApiPath = (localPath) => {
31
31
  const normalized = path.normalize(localPath);
32
32
  const relative = normalized.replace(new RegExp(`^${EXPORT_ROOT}[\\\\/]?`), '');
33
33
 
34
- // Replace 'Assets' with 'contents/assets'
34
+ // Replace 'Assets' with 'contents/assets' (case insensitive search, but replace with lowercase)
35
35
  const apiPath = relative.replace(/^Assets/i, 'contents/assets');
36
36
 
37
- // Normalize to forward slashes and lowercase, remove filename
38
- let dirPath = path.dirname(apiPath).replace(/\\/g, '/').toLowerCase();
37
+ // Normalize to forward slashes (preserve casing!), remove filename
38
+ let dirPath = path.dirname(apiPath).replace(/\\/g, '/');
39
39
 
40
40
  // Handle edge case where dirname returns '.' for root
41
41
  if (dirPath === '.') {
@@ -69,13 +69,13 @@ export const toLocalPath = (apiPath) => {
69
69
 
70
70
  /**
71
71
  * Convert a local folder path to an API path (keeps the folder, doesn't extract parent).
72
- * Similar to toApiPath but for folders.
72
+ * Similar to toApiPath but for folders (preserves original casing).
73
73
  *
74
- * @param {string} localFolderPath - Local folder path (e.g., "src/Assets/images")
75
- * @returns {string} API path (e.g., "/contents/assets/images")
74
+ * @param {string} localFolderPath - Local folder path (e.g., "src/Assets/Images")
75
+ * @returns {string} API path (e.g., "/contents/assets/Images")
76
76
  *
77
77
  * @example
78
- * toApiFolderPath("src/Assets/images") // "/contents/assets/images"
78
+ * toApiFolderPath("src/Assets/Images") // "/contents/assets/Images"
79
79
  * toApiFolderPath("src/Assets") // "/contents/assets"
80
80
  */
81
81
  export const toApiFolderPath = (localFolderPath) => {
@@ -88,11 +88,11 @@ export const toApiFolderPath = (localFolderPath) => {
88
88
  const normalized = path.normalize(localFolderPath);
89
89
  const relative = normalized.replace(new RegExp(`^${EXPORT_ROOT}[\\\\/]?`), '');
90
90
 
91
- // Replace 'Assets' with 'contents/assets'
91
+ // Replace 'Assets' with 'contents/assets' (case insensitive search, but replace with lowercase)
92
92
  let apiPath = relative.replace(/^Assets/i, 'contents/assets');
93
93
 
94
- // Normalize to forward slashes and lowercase (but don't get dirname!)
95
- apiPath = apiPath.replace(/\\/g, '/').toLowerCase();
94
+ // Normalize to forward slashes (preserve casing!)
95
+ apiPath = apiPath.replace(/\\/g, '/');
96
96
 
97
97
  // Handle edge case where path is just 'Assets'
98
98
  if (apiPath === 'contents/assets' || apiPath === '') {