Skip to content

Commit

Permalink
agent: fix tsconfig and error-handling export
Browse files Browse the repository at this point in the history
  • Loading branch information
dwerner committed Jun 28, 2024
1 parent 6f9715d commit 6824059
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/indexer-agent/src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { injectCommonStartupOptions } from './common-options'
import pMap from 'p-map'
import { NetworkSpecification } from '@graphprotocol/indexer-common/dist/network-specification'
import { BigNumber } from 'ethers'
import { displayZodParsingError } from '@graphprotocol/indexer-common/src/parsers/error-handling'
import { displayZodParsingError } from '@graphprotocol/indexer-common'
import { readFileSync } from 'fs'

// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down
2 changes: 1 addition & 1 deletion packages/indexer-agent/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"composite": true,
"lib": ["es2015", "es6", "esnext.asynciterable", "dom", "ES2020.Promise"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "../indexer-common/src/parsers/error-handling.ts"],
"include": ["src/**/*.ts", "src/**/*.d.ts"],
"exclude": ["src/**/__tests__/*.ts"],
"references": [{ "path": "../indexer-common" }]
}
1 change: 1 addition & 0 deletions packages/indexer-common/src/parsers/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './validators'
export * from './test-utils'
export * from './error-handling'

0 comments on commit 6824059

Please sign in to comment.