Skip to content

Commit 2356afb

Browse files
authored
Remove gulp dependencies (#1057)
1 parent cfd12c9 commit 2356afb

File tree

7 files changed

+127
-1859
lines changed

7 files changed

+127
-1859
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
run: npm install
3636

3737
- name: Install build tools
38-
run: npm install -g vsce gulp typescript
38+
run: npm install -g vsce typescript
3939

4040
- name: Lint
41-
run: gulp tslint
41+
run: npm run tslint
4242

4343
- name: Package
4444
run: vsce package
@@ -71,10 +71,10 @@ jobs:
7171
run: npm install
7272

7373
- name: Install build tools
74-
run: npm install -g vsce gulp typescript --force
74+
run: npm install -g vsce typescript --force
7575

7676
- name: Lint
77-
run: gulp tslint
77+
run: npm run tslint
7878

7979
- name: Package
8080
run: vsce package
@@ -107,10 +107,10 @@ jobs:
107107
run: npm install
108108

109109
- name: Install build tools
110-
run: npm install -g vsce gulp typescript
110+
run: npm install -g vsce typescript
111111

112112
- name: Lint
113-
run: gulp tslint
113+
run: npm run tslint
114114

115115
- name: Package
116116
run: vsce package

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ test/**
55
src/**
66
**/*.map
77
tsconfig.json
8-
gulpfile.js
8+
scripts/build/**
99
.gitignore
1010
images/docs/**
1111
testprojects/**

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ npm install
3838

3939
### Build and Run
4040
#### Build the Debug Server
41-
For convenience, there is task `build_server` defined in `gulpfile.js`. It builds the Java Debug Server and then copies the .jar file into folder `vscode-java-debug/server`.
41+
For convenience, there is a build script `buildJdtlsExt.js` defined in `scripts/build`. It builds the Java Debug Server and then copies the .jar file into folder `vscode-java-debug/server`.
4242
```bash
43-
npx gulp build_server
43+
npm run build-server
4444
```
45-
**NOTE**: If you didn't follow the steps to check out [vscode-java-debug](https://github.com/Microsoft/vscode-java-debug) and [java-debug](https://github.com/Microsoft/java-debug) in the same folder, please specify a correct `server_dir` in your [gulpfile.js](https://github.com/Microsoft/vscode-java-debug/blob/master/gulpfile.js#L5).
45+
**NOTE**: If you didn't follow the steps to check out [vscode-java-debug](https://github.com/Microsoft/vscode-java-debug) and [java-debug](https://github.com/Microsoft/java-debug) in the same folder, please specify a correct `server_dir` in your [buildJdtlsExt.js](https://github.com/Microsoft/vscode-java-debug/blob/master/scripts/build/buildJdtlsExt.js#L8).
4646

4747
#### Debug the Extension
4848
Open folder `vscode-java-debug` in VS Code, or simply execute following commands if you have `code` in your system PATH.

gulpfile.js

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)