Adjust various things for the VSCode theme.
This commit is contained in:
parent
d3a30d1bef
commit
e59f593245
|
@ -106,3 +106,6 @@ dist
|
||||||
# Output directories.
|
# Output directories.
|
||||||
build/
|
build/
|
||||||
public/
|
public/
|
||||||
|
|
||||||
|
# Packaged VSCode extensions.
|
||||||
|
*.vsix
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
.vscode/**
|
.vscode/**
|
||||||
.vscode-test/**
|
.vscode-test/**
|
||||||
.gitignore
|
.gitignore
|
||||||
|
|
||||||
|
# Ignore various things that don't need to be packaged with the extension.
|
||||||
|
images/
|
||||||
|
themes/love-template.color-theme.json
|
||||||
|
|
||||||
|
# Unignore the logo since that's used with a local URL.
|
||||||
|
!images/love-mark-square.png
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
## Preview
|
## Preview
|
||||||
|
|
||||||
![](https://gitlab.com/holllo/love/-/raw/master/source/vscode/images/love-dark-01.png)
|
![Love Dark Preview Image](images/love-dark-01.png)
|
||||||
![](https://gitlab.com/holllo/love/-/raw/master/source/vscode/images/love-light-01.png)
|
![Love Light Preview Image](images/love-light-01.png)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -5,14 +5,16 @@
|
||||||
"author": "Holllo <helllo@holllo.cc>",
|
"author": "Holllo <helllo@holllo.cc>",
|
||||||
"homepage": "https://love.holllo.cc",
|
"homepage": "https://love.holllo.cc",
|
||||||
"repository": "https://gitlab.com/holllo/love",
|
"repository": "https://gitlab.com/holllo/love",
|
||||||
"scripts": {},
|
"scripts": {
|
||||||
|
"package": "vsce package --baseImagesUrl='https://gitlab.com/holllo/love/-/raw/master/source/vscode/'"
|
||||||
|
},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"vsce": "^1.75.0"
|
"vsce": "^1.75.0"
|
||||||
},
|
},
|
||||||
"displayName": "Love Theme",
|
"displayName": "Love Theme",
|
||||||
"publisher": "Holllo",
|
"publisher": "Holllo",
|
||||||
"icon": "https://gitlab.com/holllo/love/-/raw/master/source/vscode/images/love-mark-square.png",
|
"icon": "images/love-mark-square.png",
|
||||||
"galleryBanner": {
|
"galleryBanner": {
|
||||||
"color": "#2A2041",
|
"color": "#2A2041",
|
||||||
"theme": "dark"
|
"theme": "dark"
|
||||||
|
|
Loading…
Reference in New Issue