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
Re-reporting #1247 as it's been closed by @mohab-sameh with no reason but hasn't actually been adressed.
Original
importwithNuxtfrom'./.nuxt/eslint.config.mjs';
Expected
importwithNuxtfrom'./.nuxt/eslint.config.mjs';
Actual
importwithNuxtfrom'.nuxt/eslint.config.mjs';
(nothing else in the eslint file was modified).
Estimated impact
Numbers about your specific codemod run:
Total number of files/instances transformed: 1
Number of files/instances missed by the codemod (FN): 0
Number of files/instances mistakenly transformed (FP): 1
Logs:
// Please insert the contents of a log file generated by the codemod run here.
Additional context
In a regular nuxt project with eslint using flatconfig configured, i'm running the following migration script (according to the nuxt docs).
npx codemod@latest nuxt/4/migration-recipe
This also updates eslint.config.mjs (wrongly)
Result:
Now unfortunately - the modification causes eslint to complain (quite loudly)
Oops! Something went wrong! :(c to cancel.
ESLint: 9.9.0
TypeError [ERR_INVALID_MODULE_SPECIFIER]: Invalid module ".nuxt/eslint.config.mjs" is not a valid package name imported from /home/xmatt/devel/javascript/nuxtfast/eslint.config.mjs
at parsePackageName (node:internal/modules/esm/resolve:782:11)
at packageResolve (node:internal/modules/esm/resolve:805:5)
at moduleResolve (node:internal/modules/esm/resolve:927:18)
at defaultResolve (node:internal/modules/esm/resolve:1169:11)
at ModuleLoader.defaultResolve (node:internal/modules/esm/loader:383:12)
at ModuleLoader.resolve (node:internal/modules/esm/loader:352:25)
at ModuleLoader.getModuleJob (node:internal/modules/esm/loader:227:38)
at ModuleWrap.<anonymous> (node:internal/modules/esm/module_job:87:39)
at link (node:internal/modules/esm/module_job:86:36)
ELIFECYCLE Command failed with exit code 2.
Reverting this line fixes the problem - though i guess this shouldn't happen for a smooth migration between nuxt3 to nuxt4.
The text was updated successfully, but these errors were encountered:
Re-reporting #1247 as it's been closed by @mohab-sameh with no reason but hasn't actually been adressed.
Original
Expected
Actual
(nothing else in the eslint file was modified).
Estimated impact
Numbers about your specific codemod run:
Logs:
// Please insert the contents of a log file generated by the codemod run here.
Additional context
In a regular nuxt project with eslint using flatconfig configured, i'm running the following migration script (according to the nuxt docs).
npx codemod@latest nuxt/4/migration-recipe
This also updates
eslint.config.mjs
(wrongly)Result:
Now unfortunately - the modification causes eslint to complain (quite loudly)
Reverting this line fixes the problem - though i guess this shouldn't happen for a smooth migration between nuxt3 to nuxt4.
The text was updated successfully, but these errors were encountered: