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.
@@ -1354,7 +1354,10 @@ function parseCSVToNestedObject(csvText, options = {}) {
1354
1354
  });
1355
1355
 
1356
1356
  if (parsed.errors && parsed.errors.length > 0) {
1357
- console.warn('[Manifest Data] CSV parsing warnings:', parsed.errors);
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnfst",
3
- "version": "0.5.29",
3
+ "version": "0.5.30",
4
4
  "private": false,
5
5
  "workspaces": [
6
6
  "templates/starter"