Skip to content

Commit 1b9df6f

Browse files
committedMar 27, 2024
feat: compactible with non-hoist env
1 parent d2b1c2d commit 1b9df6f

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed
 

‎packages/module/src/modules/config.ts

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { addTemplate } from '@nuxt/kit'
1+
import { addTemplate, resolvePath } from '@nuxt/kit'
22
import { stringifyImports } from 'unimport'
33
import type { Import } from 'unimport'
44
import type { Nuxt } from '@nuxt/schema'
@@ -57,24 +57,26 @@ async function generateESLintConfig(options: ModuleOptions, nuxt: Nuxt, addons:
5757
...typeof options.config !== 'boolean' ? options.config || {} : {},
5858
}
5959

60+
const flatConfigEntry = await resolvePath('@nuxt/eslint-config/flat', { cwd: import.meta.url })
61+
6062
importLines.push(
6163
{
62-
from: 'eslint-flat-config-utils',
64+
from: await resolvePath('eslint-flat-config-utils', { cwd: import.meta.url }),
6365
name: 'pipe',
6466
},
6567
{
66-
from: '@nuxt/eslint-config/flat',
68+
from: await resolvePath('eslint-typegen', { cwd: import.meta.url }),
69+
name: 'default',
70+
as: 'typegen'
71+
},
72+
{
73+
from: flatConfigEntry,
6774
name: 'createConfigForNuxt',
6875
},
6976
{
70-
from: '@nuxt/eslint-config/flat',
77+
from: flatConfigEntry,
7178
name: 'defineFlatConfigs',
7279
},
73-
{
74-
from: 'eslint-typegen',
75-
name: 'default',
76-
as: 'typegen'
77-
}
7880
)
7981

8082
const basicOptions: NuxtESLintConfigOptions = {

0 commit comments

Comments
 (0)