Skip to content

Commit

Permalink
improve info nodes (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart authored Aug 1, 2024
1 parent 757c1b9 commit e3ac54d
Show file tree
Hide file tree
Showing 10 changed files with 448 additions and 396 deletions.
5 changes: 5 additions & 0 deletions .changeset/great-tips-kick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"effect-vscode": patch
---

make info node value copyable
5 changes: 5 additions & 0 deletions .changeset/lemon-tigers-type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"effect-vscode": patch
---

fix info node tooltips
19 changes: 10 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
}
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"typescript.tsdk": "node_modules/typescript/lib"
}
29 changes: 20 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@
"command": "effect.resetTracer",
"title": "Effect Dev Tools: Reset Tracer",
"icon": "$(refresh)"
},
{
"command": "effect.copyInfoValue",
"title": "Copy value",
"icon": "$(copy)"
}
],
"viewsContainers": {
Expand Down Expand Up @@ -121,6 +126,12 @@
"when": "view === effect-tracer",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "effect.copyInfoValue",
"when": "viewItem == info"
}
]
}
},
Expand All @@ -135,22 +146,22 @@
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@effect/experimental": "^0.19.0",
"@effect/experimental": "^0.21.1",
"@effect/language-service": "^0.1.0",
"@effect/platform-node": "^0.54.0",
"@effect/platform-node": "^0.56.1",
"@types/mocha": "^10.0.7",
"@types/node": "~20.14.10",
"@types/node": "~22.0.2",
"@types/vscode": "1.84.0",
"@types/ws": "^8.5.11",
"@types/ws": "^8.5.12",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.30.0",
"effect": "3.5.4",
"@vscode/vsce": "^2.31.1",
"effect": "3.6.0",
"glob": "^11.0.0",
"mocha": "^10.6.0",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"tslib": "^2.6.3",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"ws": "^8.18.0"
},
"sideEffects": false
Expand Down
Loading

0 comments on commit e3ac54d

Please sign in to comment.