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
import{readFile,writeFile,cp,mkdir}from"fs/promises";/** * results in the following error * Cannot resolve module `fs/promises`.Flow(cannot-resolve-module) */
importing fs.copySync causes an error
import{cpSync}from"fs";/** * results in the following error * Cannot import `cpSync` because there is no `cpSync` export in `fs`. Did you mean `rmSync`?Flow(missing-export) */
The text was updated successfully, but these errors were encountered:
Flow version: 0.193.0
Expected behavior
no errors
Actual behavior
Importing
fs/promises
causes an errorimporting
fs.copySync
causes an errorThe text was updated successfully, but these errors were encountered: