Skip to content

Commit

Permalink
chore: align debug traces dir name with algokit-utils-py behaviour (#28)
Browse files Browse the repository at this point in the history
* fix: align debug traces dir name with algokit-utils-py behaviour

# Proposed changes

- Minor typo rename to align with the folder name generated in algokit-utils-py

* docs: fix typo in readme
  • Loading branch information
aorumbayev authored Jan 14, 2025
1 parent 00eed3f commit 7c2ca93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pipx install algokit
algokit localnet start
npx --yes wait-on tcp:4001 -t 30000
npm install --no-package-lock
npm ci --ignore-scripts
audit-script: |
npm run audit
check_docs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Then to import it and activate `utils-ts` debugging:

```typescript
import { Config } from '@algorandfoundation/algokit-utils'
import { registerDebugEventHandlers() } from '@algorandfoundation/algokit-utils-debug'
import { registerDebugEventHandlers } from '@algorandfoundation/algokit-utils-debug'

Config.configure({
debug: true,
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const ALGOKIT_DIR = '.algokit'
const SOURCES_DIR = 'sources'
const DEBUG_TRACES_DIR = 'debug-traces'
const DEBUG_TRACES_DIR = 'debug_traces'
const TEAL_FILE_EXT = '.teal'
const TEAL_SOURCEMAP_EXT = '.teal.map'
const DEFAULT_MAX_SEARCH_DEPTH = 10
Expand Down

0 comments on commit 7c2ca93

Please sign in to comment.