Skip to content

Commit 721728f

Browse files
committed
Test cancellation and cleanup
1 parent f3bfd27 commit 721728f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+882
-3104
lines changed

.vscodeignore

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ out/**
99
src/**
1010
submodules/**
1111
test-resources/**
12-
types/**
1312

1413
**/.dockerignore
1514
**/.eslintcache

CONTRIBUTING.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
You can start by looking through the issues marked with label [`good first issue`](https://github.com/rage/tmc-vscode/labels/good%20first%20issue).
66

7+
## Project structure
8+
9+
- `./src`: contains the "backend" of the extension
10+
- `./src/actions`: Contains composable actions used by the VSCode commands and other actions
11+
- `./src/commands`: Contains a source file for each VSCode command contributed by the extension
12+
- `./webview-ui`: contains the "frontend" of the extension
13+
- `./shared`: contains types that are shared between the backend and frontend
14+
715
## Setup
816

917
### Prerequisites

package.json

-9
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@
6161
"title": "Activate",
6262
"category": "TMC"
6363
},
64-
{
65-
"command": "tmcTreeView.setContentFromTemplate",
66-
"title": "Set Content From Template",
67-
"category": "TMC"
68-
},
6964
{
7065
"command": "tmcTreeView.removeCourse",
7166
"title": "Remove Course",
@@ -263,10 +258,6 @@
263258
"command": "tmcView.activateEntry",
264259
"when": "false"
265260
},
266-
{
267-
"command": "tmcTreeView.setContentFromTemplate",
268-
"when": "false"
269-
},
270261
{
271262
"command": "tmcTreeView.removeCourse",
272263
"when": "false"

resources/styles/bootstrap.min.css

-7
This file was deleted.

resources/styles/style.css

-343
This file was deleted.

0 commit comments

Comments
 (0)