Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(sdk): add etf2l sdk #6

Merged
merged 10 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from 6 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
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
TheBv marked this conversation as resolved.
Show resolved Hide resolved
// 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": [
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"cwd": "${workspaceFolder}/javascript-sdk/etf2l/",
"env": {},
"runtimeExecutable": "C:\\Users\\Patrick\\.deno\\bin\\deno.EXE",
"runtimeArgs": [
"test",
"--unstable",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229,
"outputCapture": "std"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"github.copilot.inlineSuggest.enable": true
TheBv marked this conversation as resolved.
Show resolved Hide resolved
}
5 changes: 3 additions & 2 deletions javascript-sdk/deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"exclude": [".git", "coverage", "docs"],
"tasks": {
"ok": "deno lint && deno fmt --check"
"ok": "deno lint && deno fmt --check",
"test": "deno test --allow-net"
},
"workspace": ["./logstf"]
"workspace": ["./logstf", "./etf2l"]
}
Loading