chore: migration vite import.meta.glob (#2778)
This commit is contained in:
@@ -46,7 +46,7 @@ export type HoppModule = {
|
|||||||
* All the modules Hoppscotch loads into the app
|
* All the modules Hoppscotch loads into the app
|
||||||
*/
|
*/
|
||||||
export const HOPP_MODULES = pipe(
|
export const HOPP_MODULES = pipe(
|
||||||
import.meta.globEager("@modules/*.ts"),
|
import.meta.glob("@modules/*.ts", { eager: true }),
|
||||||
Object.values,
|
Object.values,
|
||||||
A.map(({ default: defaultVal }) => defaultVal as HoppModule)
|
A.map(({ default: defaultVal }) => defaultVal as HoppModule)
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user