@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 +1 -1
- package/src/config/config.js +2 -2
- package/src/services/DatabaseService.js +1 -1
- package/src/index-old.js +0 -2658
package/package.json
CHANGED
package/src/config/config.js
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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}`,
|