Skip to content

Commit ba02533

Browse files
1 parent 9f55600 commit ba02533

12 files changed

+53
-1
lines changed

.changeset/fuzzy-pens-live.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"typespec-vscode": patch
3+
---
4+
5+
Added icons to the extensions

icons/raw/readme.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# TypeSpec Raw Svg Icons
2+
3+
Those are the raw typespec icons with text still has text. It can be used to easily convert the text to path with different font and different positions.

icons/raw/tsp-logo-inverted.svg

+7
Loading

icons/raw/tsp-logo.svg

+8
Loading

packages/typespec-vscode/.vscodeignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
!README.md
1515
!ThirdPartyNotices.txt
1616
!LICENSE
17+
!icons/
4.84 KB
Loading
Loading
Loading

packages/typespec-vscode/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"typespec-vscode-*.vsix",
3535
"ThirdPartyNotices.txt"
3636
],
37+
"icon": "./icons/logo.png",
3738
"contributes": {
3839
"languages": [
3940
{
@@ -45,6 +46,10 @@
4546
"extensions": [
4647
".tsp"
4748
],
49+
"icon": {
50+
"light": "./icons/tsp-file.light.svg",
51+
"dark": "./icons/tsp-file.dark.svg"
52+
},
4853
"configuration": "./dist/language-configuration.json"
4954
},
5055
{

packages/website/docusaurus.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const config: Config = {
4141
baseUrl,
4242
onBrokenLinks: "throw",
4343
onBrokenMarkdownLinks: "warn",
44-
favicon: "img/azure.svg",
44+
favicon: "img/favicon.svg",
4545

4646
// GitHub pages deployment config.
4747
// If you aren't using GitHub pages, you don't need these.

packages/website/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "@typespec/website",
33
"version": "1.0.0",
44
"description": "",
5+
"private": true,
56
"main": "index.js",
67
"scripts": {
78
"docusaurus": "docusaurus",
+8
Loading

0 commit comments

Comments
 (0)