A Supabase inspired VS Code theme.
Not affiliated with Supabase.
vsce
is the command-line tool you use to package and publish Visual Studio Code extensions. You can install it using different package managers:
If you have Node.js installed, you can use npm (Node Package Manager) to install vsce
globally:
npm install -g vsce
If you prefer Yarn, another popular package manager, you can install vsce
globally with:
yarn global add vsce
If you use pnpm, a fast, disk space-efficient package manager, install vsce
with:
pnpm add -g vsce
After installation, you can check if vsce
is correctly installed by running:
vsce --version
To package your VS Code theme into a .vsix
file, follow these steps:
-
Ensure all dependencies are installed:
npm install
-
Run the following command to create a
.vsix
package:vsce package
This will generate a
.vsix
file in the root of your project directory.
After packaging your extension, you can install it in VS Code by following these steps:
- Open VS Code.
- Drag and drop the
.vsix
file into the Extensions view (Ctrl+Shift+X
orCmd+Shift+X
).
Alternatively, you can install the extension via the command line:
code --install-extension path/to/your-extension-name.vsix
Replace path/to/your-extension-name.vsix
with the actual path to your packaged .vsix
file.
If you want to work on the theme and test your changes live:
-
Open the project in VS Code:
code .
-
Start the extension in development mode by pressing
F5
or selectingStart Debugging
from theRun
menu. -
A new VS Code window will open with your theme loaded. Any changes you make to the theme files will be reflected here upon reload (
Ctrl+R
orCmd+R
).
This project is licensed under the MIT License. See the LICENSE file for more details. `