Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,6 @@ __pycache__/
env/
venv/
ENV/

# Polytest (temporary files until polytest branch merged to main)
.polytest_algokit-polytest/
11 changes: 0 additions & 11 deletions .tstoolkitrc.ts

This file was deleted.

18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Vitest Test",
"runtimeExecutable": "npm",
"runtimeArgs": ["test", "--", "--run", "--no-coverage", "${file}"],
"cwd": "${workspaceFolder}/packages/algod_client",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
14 changes: 13 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
"scripts": {
"build": "run-s build:*",
"build:0-clean": "rimraf dist coverage",
"build:2-compile": "rolldown -c",
"build:3-copy-pkg-json": "tstk copy-package-json -c",
"build:4-copy-readme": "cpy README.md LICENSE dist",
"build:5-fix-readme-links": "replace-in-files --string '(./' --replacement '(https://github.com/algorandfoundation/algokit-utils-ts/blob/main/' dist/README.md",
"build:1-compile": "rolldown -c",
"build:2-copy-pkg-json": "tstk copy-package-json --custom-sections module main type types exports",
"build:3-copy-readme": "cpy README.md LICENSE dist",
"build:4-fix-readme-links": "replace-in-files --string '(./' --replacement '(https://github.com/algorandfoundation/algokit-utils-ts/blob/main/' dist/README.md",
"test": "vitest run --coverage --passWithNoTests",
"test:watch": "vitest watch --coverage --passWithNoTests",
"lint": "eslint ./src/ && npm run lint --workspaces --if-present",
Expand Down
8 changes: 4 additions & 4 deletions packages/algod_client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"format": "prettier --config ../../.prettierrc.cjs --ignore-path ../../.prettierignore --write .",
"pre-commit": "run-s check-types lint:fix audit format test"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {}
}
"devDependencies": {
"zod": "^4.1.12"
}
}
Loading