Skip to content

Commit 668bed7

Browse files
committed
chore: cleanup
1 parent 41a3d87 commit 668bed7

File tree

9 files changed

+9
-22
lines changed

9 files changed

+9
-22
lines changed

.github/workflows/package.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33
branches:
44
- master
5-
name: Build Extension
5+
name: Package Extension
66
jobs:
77
pacakge:
88
runs-on: ubuntu-20.04
@@ -12,9 +12,9 @@ jobs:
1212
with:
1313
node-version: '15'
1414
- run: npm ci
15-
- run: npm install -global vsce
15+
- run: npm install -g vsce
1616
- run: vsce package --out coder.vsix
1717
- uses: actions/upload-artifact@v2
1818
with:
1919
name: coder.vsix
20-
path: ./coder.vsix
20+
path: ./coder.vsix

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
dist/
2-
node_modules/
2+
node_modules/
3+
out/

.prettierignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2-
# node_modules
31
node_modules/
2+
out/
3+
dist/

.vscode/launch.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// A launch configuration that compiles the extension and then opens it inside a new window
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
51
{
62
"version": "0.2.0",
73
"configurations": [

.vscode/tasks.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// See https://go.microsoft.com/fwlink/?LinkId=733558
2-
// for the documentation about the tasks.json format
31
{
42
"version": "2.0.0",
53
"tasks": [

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Change Log
22

3-
All notable changes to the "coder" extension will be documented in this file.
4-
5-
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6-
73
## [Unreleased]
84

95
- Initial release
File renamed without changes.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
{
2525
"id": "coder",
2626
"title": "Coder",
27-
"icon": "media/dep.svg"
27+
"icon": "media/logo.svg"
2828
}
2929
]
3030
},
@@ -34,7 +34,7 @@
3434
"id": "coderWorkspaces",
3535
"name": "Coder Workspaces",
3636
"visibility": "visible",
37-
"icon": "media/dep.svg",
37+
"icon": "media/logo.svg",
3838
"contextualTitle": "Workspaces"
3939
},
4040
{

tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
"sourceMap": true,
88
"rootDir": "src",
99
"strict": true,
10-
/* Additional Checks */
11-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
12-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
13-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
1410
},
1511
"exclude": ["node_modules", ".vscode-test"]
1612
}

0 commit comments

Comments
 (0)