Skip to content

Commit

Permalink
fix: disable requireCache (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe authored Mar 7, 2022
1 parent b4720d9 commit 1a6f7d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ async function extendConfig (config, opts: LoadConfigOptions) {

const GIT_PREFIXES = ['github:', 'gitlab:', 'bitbucket:', 'https://']

const jiti = createJiti(null, { cache: false, interopDefault: true })
const jiti = createJiti(null, { cache: false, interopDefault: true, requireCache: false })

async function resolveConfig (source: string, opts: LoadConfigOptions): Promise<ResolvedConfig> {
if (opts.resolve) {
Expand Down

0 comments on commit 1a6f7d3

Please sign in to comment.