Skip to content
Merged
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: 0 additions & 3 deletions .commitlintrc.json

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
PGDATABASE: postgres
STACKS_NODE_RPC_HOST: 127.0.0.1
STACKS_NODE_RPC_PORT: 24440
SNP_REDIS_URL: redis://localhost:6379
steps:
- uses: actions/checkout@v6
with:
Expand Down
4 changes: 0 additions & 4 deletions .husky/commit-msg

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24
58 changes: 11 additions & 47 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@
"request": "launch",
"name": "start",
"runtimeArgs": [
"-r",
"ts-node/register"
"--import",
"tsx"
],
"args": [
"${workspaceFolder}/src/index.ts"
],
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart",
"env": {
"NODE_ENV": "development",
"TS_NODE_SKIP_IGNORE": "true"
"NODE_ENV": "development"
},
"killBehavior": "polite",
},
Expand All @@ -25,8 +24,8 @@
"request": "launch",
"name": "start: readonly",
"runtimeArgs": [
"-r",
"ts-node/register"
"--import",
"tsx"
],
"args": [
"${workspaceFolder}/src/index.ts"
Expand All @@ -35,7 +34,6 @@
"internalConsoleOptions": "openOnSessionStart",
"env": {
"NODE_ENV": "development",
"TS_NODE_SKIP_IGNORE": "true",
"RUN_MODE": "readonly"
},
"killBehavior": "polite",
Expand All @@ -45,8 +43,8 @@
"request": "launch",
"name": "start: writeonly",
"runtimeArgs": [
"-r",
"ts-node/register"
"--import",
"tsx"
],
"args": [
"${workspaceFolder}/src/index.ts"
Expand All @@ -55,32 +53,10 @@
"internalConsoleOptions": "openOnSessionStart",
"env": {
"NODE_ENV": "development",
"TS_NODE_SKIP_IGNORE": "true",
"RUN_MODE": "writeonly"
},
"killBehavior": "polite",
},
{
"type": "node",
"request": "launch",
"name": "test",
"runtimeExecutable": "node",
"args": [
"--import",
"tsx",
"--import",
"${workspaceFolder}/tests/setup-env.ts",
"--test",
"--test-concurrency=1",
],
"outputCapture": "std",
"console": "integratedTerminal",
"preLaunchTask": "npm: testenv:run",
"postDebugTask": "npm: testenv:stop",
"env": {
"NODE_ENV": "test"
},
},
{
"type": "node",
"request": "launch",
Expand All @@ -89,16 +65,13 @@
"args": [
"--import",
"tsx",
"--import",
"${workspaceFolder}/tests/setup-env.ts",
"--test",
"--test-global-setup=./tests/setup.ts",
"--test-concurrency=1",
"${workspaceFolder}/tests/admin/*.test.ts"
],
"outputCapture": "std",
"console": "integratedTerminal",
"preLaunchTask": "npm: testenv:run",
"postDebugTask": "npm: testenv:stop",
"env": {
"NODE_ENV": "test"
},
Expand All @@ -111,16 +84,13 @@
"args": [
"--import",
"tsx",
"--import",
"${workspaceFolder}/tests/setup-env.ts",
"--test",
"--test-global-setup=./tests/setup.ts",
"--test-concurrency=1",
"${workspaceFolder}/tests/api/*.test.ts"
],
"outputCapture": "std",
"console": "integratedTerminal",
"preLaunchTask": "npm: testenv:run",
"postDebugTask": "npm: testenv:stop",
"env": {
"NODE_ENV": "test"
},
Expand All @@ -133,16 +103,13 @@
"args": [
"--import",
"tsx",
"--import",
"${workspaceFolder}/tests/setup-env.ts",
"--test",
"--test-global-setup=./tests/setup.ts",
"--test-concurrency=1",
"${workspaceFolder}/tests/stacks-core/*.test.ts",
],
"outputCapture": "std",
"console": "integratedTerminal",
"preLaunchTask": "npm: testenv:run",
"postDebugTask": "npm: testenv:stop",
"env": {
"NODE_ENV": "test"
},
Expand All @@ -155,16 +122,13 @@
"args": [
"--import",
"tsx",
"--import",
"${workspaceFolder}/tests/setup-env.ts",
"--test",
"--test-global-setup=./tests/setup.ts",
"--test-concurrency=1",
"${workspaceFolder}/tests/token-queue/*.test.ts"
],
"outputCapture": "std",
"console": "integratedTerminal",
"preLaunchTask": "npm: testenv:run",
"postDebugTask": "npm: testenv:stop",
"env": {
"NODE_ENV": "test"
},
Expand Down
36 changes: 0 additions & 36 deletions .vscode/tasks.json

This file was deleted.

Loading
Loading