Skip to content

Commit 36fadbe

Browse files
committed
include artifacts with dollar sign characters
1 parent 4c97734 commit 36fadbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/hardhat/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ subtask(TASK_TYPECHAIN_GENERATE_TYPES)
6868
const cwd = config.paths.root
6969

7070
const { glob } = await import('typechain')
71-
const allFiles = glob(cwd, [`${config.paths.artifacts}/!(build-info)/**/+([a-zA-Z0-9_]).json`])
71+
const allFiles = glob(cwd, [`${config.paths.artifacts}/!(build-info)/**/+([a-zA-Z0-9_$]).json`])
7272
if (typechainCfg.externalArtifacts) {
7373
allFiles.push(...glob(cwd, typechainCfg.externalArtifacts, false))
7474
}

0 commit comments

Comments
 (0)