mnfst 0.5.29 → 0.5.30
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/dist/manifest.data.js +4 -1
- package/package.json +1 -1
package/dist/manifest.data.js
CHANGED
|
@@ -1354,7 +1354,10 @@ function parseCSVToNestedObject(csvText, options = {}) {
|
|
|
1354
1354
|
});
|
|
1355
1355
|
|
|
1356
1356
|
if (parsed.errors && parsed.errors.length > 0) {
|
|
1357
|
-
|
|
1357
|
+
const serious = parsed.errors.filter(e => e.code !== 'TooFewFields');
|
|
1358
|
+
if (serious.length > 0) {
|
|
1359
|
+
console.warn('[Manifest Data] CSV parsing warnings:', serious);
|
|
1360
|
+
}
|
|
1358
1361
|
}
|
|
1359
1362
|
|
|
1360
1363
|
if (!parsed.data || parsed.data.length === 0) {
|