Failed vscode wip

This commit is contained in:
Idrees Hassan
2025-11-15 21:08:28 -05:00
parent 76e55a3caa
commit 2e3ff28706
14 changed files with 2935 additions and 5 deletions

2
dist/birb.js vendored
View File

@@ -6,7 +6,7 @@
RIGHT: 1,
};
let debugMode = location.hostname === "127.0.0.1";
let debugMode = window.location.hostname === "127.0.0.1";
/**
* @returns {boolean} Whether debug mode is enabled

BIN
dist/extension.zip vendored

Binary file not shown.

View File

@@ -6,7 +6,7 @@
RIGHT: 1,
};
let debugMode = location.hostname === "127.0.0.1";
let debugMode = window.location.hostname === "127.0.0.1";
/**
* @returns {boolean} Whether debug mode is enabled

View File

@@ -11,7 +11,7 @@ module.exports = class PocketBird extends Plugin {
RIGHT: 1,
};
let debugMode = location.hostname === "127.0.0.1";
let debugMode = window.location.hostname === "127.0.0.1";
/**
* @returns {boolean} Whether debug mode is enabled

View File

@@ -20,7 +20,7 @@
RIGHT: 1,
};
let debugMode = location.hostname === "127.0.0.1";
let debugMode = window.location.hostname === "127.0.0.1";
/**
* @returns {boolean} Whether debug mode is enabled

2834
dist/vscode/extension.js vendored Normal file

File diff suppressed because it is too large Load Diff

21
dist/vscode/package.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "pocket-bird",
"version": "2025.11.15",
"engines": {
"vscode": "^1.32.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "extension.js",
"contributes": {
"commands": [
{
"command": "pocket-bird.helloWorld",
"title": "Hello World",
"category": "Example"
}
]
}
}