Skip to content

Commit a96d8a2

Browse files
committed
Update for deploymnet
1 parent 1b551f1 commit a96d8a2

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

.docs/images/basic_example.gif

-420 KB
Loading

.vscodeignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ frontend/**
1616
test_code/
1717
shared/
1818
.docs/
19-
!frontend/dist/**
19+
!frontend/dist/**
20+
!.docs/**

README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# call-graph README
1+
# Debug graph
22

33
A Visual Studio Code extension that shows all the function calls (code paths) that lead to a breakpoint.
44

@@ -23,13 +23,19 @@ Although, i have only tested:
2323
* Java (limited)
2424
-->
2525

26-
## Extension Settings
26+
## How to get started
2727

28-
Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
28+
1. Set a breakpoint in your code
29+
2. Click on the `Call Graph` icon in the top bar of your editor
30+
3. See what variables are and where you are coming from
2931

30-
For example:
32+
## How to install
3133

32-
This extension contributes the following settings:
34+
1. Open Visual Studio Code
35+
2. Go to the Extensions view by clicking on the square icon in the sidebar
36+
3. Search for `Call Graph`
37+
4. Click on the Install button
3338

34-
* `myExtension.enable`: Enable/disable this extension.
35-
* `myExtension.thing`: Set to `blah` to do something.
39+
## Known Issues
40+
41+
* Sometimes the theme colors are not matched to vscode theme, this resolves when opening the call graph again

assets/ui-hint.png

287 Bytes
Loading

package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"name": "call-graph",
3-
"displayName": "call-graph",
2+
"name": "debug-graph",
3+
"displayName": "debug-graph",
44
"description": "A Visual Studio Code extension that shows all the function calls (code paths) that lead to a breakpoint.",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
6+
"icon": "assets/ui-hint.png",
67
"licenses": [
78
{
89
"url": "https://github.com/K0IN/stacktrace-history/LICENSE",
@@ -50,11 +51,11 @@
5051
}
5152
},
5253
"scripts": {
53-
"vscode:prepublish": "npm run compile-all && npm run vscode:package",
54+
"vscode:prepublish": "npm run vscode:package",
55+
"vscode:package": "npm run compile-frontend && webpack --mode production --devtool hidden-source-map",
5456
"vscode:bundle": "npm run vscode:package && vsce package",
5557
"vscode:install": "npm run vscode:bundle && code --install-extension call-graph-0.0.1.vsix",
5658
"vscode:uninstall": "code --uninstall k0in.call-graph",
57-
"vscode:package": "npm run compile-frontend && webpack --mode production --devtool hidden-source-map",
5859
"vscode:publish": "npm run vscode:bundle && vsce publish",
5960
"lint-frontend": "cd frontend && npm run lint",
6061
"compile-frontend": "cd frontend && npm run build",

0 commit comments

Comments
 (0)