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
I find that the startup time of my app is a little slow. While running DEBUG="*" npm run dev I noticed that a majority of the time it was skipping ignored files:
...
babel:config:config-chain No config is applied to "/Users/michael/repos/MyApp/node_modules/@shopify/koa-shopify-auth/dist/src/auth/client/storage-access-helper.js" because it matches one of `ignore: ["node_modules"]` from "/Users/michael/repos/MyApp" +1ms
babel:config:config-chain No config is applied to "/Users/michael/repos/MyApp/node_modules/@shopify/koa-shopify-auth/dist/src/verify-request/index.js" because it matches one of `ignore: ["node_modules"]` from "/Users/michael/repos/MyApp" +1ms
babel:config:config-chain No config is applied to "/Users/michael/repos/MyApp/node_modules/@shopify/koa-shopify-auth/dist/src/verify-request/verify-request.js" because it matches one of `ignore: ["node_modules"]` from "/Users/michael/repos/MyApp" +0ms
babel:config:config-chain No config is applied to "/Users/michael/repos/MyApp/node_modules/koa-compose/index.js" because it matches one of `ignore: ["node_modules"]` from "/Users/michael/repos/MyApp" +15ms
babel:config:config-chain No config is applied to "/Users/michael/repos/MyApp/node_modules/any-promise/index.js" because it matches one of `ignore: ["node_modules"]` from "/Users/michael/repos/MyApp" +1ms
babel:config:config-chain No config is applied to "/Users/michael/repos/MyApp/node_modules/any-promise/register.js" because it matches one of `ignore: ["node_modules"]` from "/Users/michael/repos/MyApp" +0ms
babel:config:config-chain No config is applied to "/Users/michael/repos/MyApp/node_modules/any-promise/loader.js" because it matches one of `ignore: ["node_modules"]` from "/Users/michael/repos/MyApp" +1ms
...
I noticed that the ignore code ignores file by file matching. Can it instead ignore the folder without iterating every file in the directory?
Hey @mozeryansky! We really appreciate you taking the time to report an issue. The collaborators on this project attempt to help as many people as possible, but we're a limited number of volunteers, so it's possible this won't be addressed swiftly.
If you need any help, or just have general Babel or JavaScript questions, we have a vibrant Slack community that typically always has someone willing to help. You can sign-up here for an invite."
I find that the startup time of my app is a little slow. While running
DEBUG="*" npm run dev
I noticed that a majority of the time it was skipping ignored files:I noticed that the ignore code ignores file by file matching. Can it instead ignore the folder without iterating every file in the directory?
Relative file:
babel/packages/babel-core/src/config/config-chain.js
Line 780 in cb30c1d
register
The text was updated successfully, but these errors were encountered: