@arela/uploader 0.2.11 → 0.2.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arela/uploader",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "CLI to upload files/directories to Arela",
5
5
  "bin": {
6
6
  "arela": "./src/index.js"
@@ -28,10 +28,10 @@ class Config {
28
28
  const __dirname = path.dirname(__filename);
29
29
  const packageJsonPath = path.resolve(__dirname, '../../package.json');
30
30
  const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8'));
31
- return packageJson.version || '0.2.11';
31
+ return packageJson.version || '0.2.12';
32
32
  } catch (error) {
33
33
  console.warn('⚠️ Could not read package.json version, using fallback');
34
- return '0.2.11';
34
+ return '0.2.12';
35
35
  }
36
36
  }
37
37
 
@@ -730,7 +730,7 @@ export class DatabaseService {
730
730
 
731
731
  // Check if we need to fetch the next page of related files
732
732
  if (relatedFilesPage.length < relatedFilesPageSize) {
733
- console.log('no more related files for ', basePath);
733
+ logger.info('No more related files for', basePath);
734
734
  hasMoreRelatedFiles = false;
735
735
  logger.info(
736
736
  `Completed processing related files for ${pedimento.filename}. Total processed: ${totalRelatedFilesProcessed}`,