You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not exactly a bug because it's not truly blocking me and I'm sure it's got something to do with my environment, but wanted to post here to help figure it out.
Basically I've upgraded to the latest version of this package and updated my imports to 'csv-stringify/sync', but my editor is flagging it as an unresolved dependency (even tho they path is resolved when I hover it). Everything seems to work fine, it's just annoying that this is being flagged.
Using TypeScript here as well, if that is relevant.
To Reproduce
Updated csv-stringify from 5.6.5 to 6.2.3
Change imports from...
import * as stringify from 'csv-stringify/lib/sync';
...to...
import { stringify } from 'csv-stringify/sync';
Additional context
The text was updated successfully, but these errors were encountered:
This is because this package now uses exports to declare what files are available, and eslint-plugin-import doesn't yet support that: import-js/eslint-plugin-import#1810.
Adding a file sync.js or sync/index.js to the published version of these packages would resolve this.
Describe the bug
Not exactly a bug because it's not truly blocking me and I'm sure it's got something to do with my environment, but wanted to post here to help figure it out.
Basically I've upgraded to the latest version of this package and updated my imports to
'csv-stringify/sync'
, but my editor is flagging it as an unresolved dependency (even tho they path is resolved when I hover it). Everything seems to work fine, it's just annoying that this is being flagged.Using TypeScript here as well, if that is relevant.
To Reproduce
csv-stringify
from 5.6.5 to 6.2.3Additional context
The text was updated successfully, but these errors were encountered: