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
{{ message }}
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
I run es-check es5 project/**/*.js | grep 'erroring file' multi times in my project
It said:
ES-Check: there were 79 ES version matching errors.
· erroring file: xxxA.js
· erroring file: xxxB.js
· erroring file: xxxC.js
There were always 79 error files in my project, that's ok,
but grep erroring file count seems random, sometimes 63, sometimes 47,
I just can't tell what all those files are.
Also meet this problem while using it in Node (maybe make an incode requirable version as well?)
I run
es-check es5 project/**/*.js | grep 'erroring file'
multi times in my projectIt said:
There were always 79 error files in my project, that's ok,
but grep
erroring file
count seems random, sometimes 63, sometimes 47,I just can't tell what all those files are.
Also meet this problem while using it in Node (maybe make an incode requirable version as well?)
I check your code
I think this issue may be caused by
process.exit
...forEach
is synchronous butlog
is not?So it return before log all the items
and don't use
logger.error
for everything...e.g.
The text was updated successfully, but these errors were encountered: