Skip to content

Commit fa5fc60

Browse files
committed
Update command identifiers and titles in package.json and extension.ts to reflect new project name "Bibimbob"
1 parent ee4fd7c commit fa5fc60

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

vscode-rescriptdep/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"url": "https://github.com/mununki/rescriptdep/issues"
1919
},
2020
"engines": {
21-
"vscode": "^1.98.0"
21+
"vscode": "^1.97.0"
2222
},
2323
"categories": [
2424
"Other"
@@ -31,16 +31,16 @@
3131
"contributes": {
3232
"commands": [
3333
{
34-
"command": "rescriptdep-visualizer.showDependencyGraph",
35-
"title": "ReScript: Show Dependency Graph"
34+
"command": "bibimbob.showDependencyGraph",
35+
"title": "Bibimbob: Show Dependency Graph"
3636
},
3737
{
38-
"command": "rescriptdep-visualizer.focusModuleDependencies",
39-
"title": "ReScript: Focus On Module Dependencies"
38+
"command": "bibimbob.focusModuleDependencies",
39+
"title": "Bibimbob: Focus On Module Dependencies"
4040
},
4141
{
42-
"command": "rescriptdep-visualizer.clearCache",
43-
"title": "ReScript: Clear Dependency Cache"
42+
"command": "bibimbob.clearCache",
43+
"title": "Bibimbob: Clear Dependency Cache"
4444
}
4545
]
4646
},

vscode-rescriptdep/src/extension.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ import * as fs from 'fs';
55
import * as os from 'os';
66

77
// Command IDs
8-
const SHOW_DEPENDENCY_GRAPH = 'rescriptdep-visualizer.showDependencyGraph';
9-
const FOCUS_MODULE_DEPENDENCIES = 'rescriptdep-visualizer.focusModuleDependencies';
10-
const CLEAR_CACHE = 'rescriptdep-visualizer.clearCache';
8+
const SHOW_DEPENDENCY_GRAPH = 'bibimbob.showDependencyGraph';
9+
const FOCUS_MODULE_DEPENDENCIES = 'bibimbob.focusModuleDependencies';
10+
const CLEAR_CACHE = 'bibimbob.clearCache';
1111

1212
export function activate(context: vscode.ExtensionContext) {
13+
console.log('Bibimbob is activated');
1314
// Command for full dependency graph
1415
let fullGraphCommand = vscode.commands.registerCommand(SHOW_DEPENDENCY_GRAPH, async () => {
1516
await generateDependencyGraph(context);
@@ -913,7 +914,7 @@ function showGraphWebview(context: vscode.ExtensionContext, jsonContent: string,
913914

914915
// Create and display webview panel
915916
const panel = vscode.window.createWebviewPanel(
916-
'rescriptDepVisualizer',
917+
'bibimbobVisualizer',
917918
isFocusedMode && centerModule ? `Module: ${centerModule.name} Dependencies` : 'ReScript Dependencies',
918919
vscode.ViewColumn.One,
919920
{

0 commit comments

Comments
 (0)