-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.13.5 broken #2859
Comments
To be clear, are you saying that #2857 is not solved for you in 0.13.6? What exactly are you seeing? Can you check 0.13.4, and confirm if the problem is there? |
Hi @ljharb, I see I debugged the I haven't yet gone deeper into the issue with This is eslint run with the entire error log: https://gitlab.com/gitlab-renovate-forks/gitlab/-/jobs/4893864394 Our update merge request: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/129630 |
@miguelrincon no version of |
|
oh shit, good call. i guess previously it just silently ignored that base dir? If we I've got the fix ready, but i'll wait til i get a pulse check here :-) |
Presumably you mean That works for my project at least. |
I was on v0.13.2 and tested every version until it broke so yep, 0.13.4 is not broken. The problem I'm seeing is that it cannot resolve alias' I've defined in webpack.config.js. Where my eslint config looks like
On 0.13.6 and making that change in my |
@andersk you are right, passing an explicit diff --git a/.eslintrc.yml b/.eslintrc.yml
index dfb9e8f97eb9..34ccbcbaa453 100644
--- a/.eslintrc.yml
+++ b/.eslintrc.yml
@@ -16,7 +16,8 @@ plugins:
settings:
import/resolver:
webpack:
- config: './config/webpack.config.js'
+ cwd: '.'
+ config: 'config/webpack.config.js'
rules:
import/no-commonjs: error
import/no-default-export: off @ljharb, I changed basedir = cwd || path.dirname(configPath); |
v0.13.7 published. |
Hi @ljharb, I haven't dug into it but upgrading from 0.13.2 to latest has broken this plugin, I've found it come from 0.13.5 and the lodash revert from 0.13.6 hasn't seemed to have solved anything.
I'll be locking to 0.13.4 for now but hope it can be fixed soon!
The text was updated successfully, but these errors were encountered: