Skip to content

Commit 0c4a26b

Browse files
committed
Code cleanup [skip ci]
1 parent 7dfa84f commit 0c4a26b

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/build.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -30,43 +30,43 @@ jobs:
3030
with:
3131
node-version: 18
3232

33-
- name: Install dependencies
33+
- name: 📦 Install dependencies
3434
run: npm install
3535

36-
- name: Install vsce
36+
- name: 🎁 Install vsce
3737
run: npm install -g @vscode/vsce
3838

39-
- name: Install cross-env
39+
- name: 🖥️ Install cross-env
4040
run: npm install -g cross-env
4141

42-
- name: NBGV
42+
- name: 🏷️ NBGV
4343
uses: dotnet/nbgv@master
4444
id: nbgv
4545
with:
4646
stamp: package.json
4747

48-
- name: NBGV outputs
48+
- name: 🗣️ NBGV outputs
4949
run: |
5050
echo "SimpleVersion: ${{ steps.nbgv.outputs.SimpleVersion }}"
5151
52-
- name: Package
52+
- name: 📦 Package
5353
run: |
5454
vsce package -o ./${{ github.event.repository.name}}.vsix
5555
56-
- name: Publish
56+
- name: 📰 Publish
5757
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
5858
run: npm run deploy
5959
env:
6060
VSCE_PAT: ${{ secrets.VSCE_PAT }}
6161

62-
- name: Upload artifact
62+
- name: ⬆️ Upload artifact
6363
uses: actions/upload-artifact@v3
6464
with:
6565
name: ${{ github.event.repository.name}}.vsix
6666
path: |
6767
"**/*.vsix"
6868
69-
- name: Tag and Release
69+
- name: 🏷️ Tag and Release
7070
id: tag_release
7171
uses: softprops/action-gh-release@v1
7272
with:

src/resxProvider.ts

-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ export class ResxProvider implements vscode.CustomTextEditorProvider {
134134
const webviewUri = webview.asWebviewUri(vscode.Uri.joinPath(this.context.extensionUri, 'out', 'webview.js'));
135135
const nonce = getNonce();
136136
const codiconsUri = webview.asWebviewUri(vscode.Uri.joinPath(this.context.extensionUri, 'media', 'codicon.css'));
137-
const codiconsFont = webview.asWebviewUri(vscode.Uri.joinPath(this.context.extensionUri, 'media', 'codicon.ttf'));
138137

139138
return /*html*/ `
140139
<!DOCTYPE html>

0 commit comments

Comments
 (0)