Skip to content

Commit 8ebcf9e

Browse files
authored
chore: Remove gulp dependencies (#557)
1 parent 7dd7132 commit 8ebcf9e

File tree

11 files changed

+65
-3301
lines changed

11 files changed

+65
-3301
lines changed

.github/workflows/linux.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ jobs:
3434
- name: Install Node.js modules
3535
run: npm install
3636

37-
- name: Install Gulp
38-
run: npm install -g gulp
39-
4037
- name: Install VSCE
4138
run: npm install -g vsce
4239

.github/workflows/linuxUI.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ jobs:
3434
- name: Install Node.js modules
3535
run: npm install
3636

37-
- name: Install Gulp
38-
run: npm install -g gulp
39-
4037
- name: Install VSCE
4138
run: npm install -g vsce
4239

.github/workflows/macOS.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ jobs:
2727
- name: Install Node.js modules
2828
run: npm install
2929

30-
- name: Install Gulp
31-
run: npm install -g gulp
32-
3330
- name: Install VSCE
3431
run: npm install -g vsce
3532

.github/workflows/windows.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ jobs:
2727
- name: Install Node.js modules
2828
run: npm install
2929

30-
- name: Install Gulp
31-
run: npm install -g gulp --force
32-
3330
- name: Install VSCE
3431
run: npm install -g vsce
3532

.github/workflows/windowsUI.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,15 @@ jobs:
2727
- name: Install Node.js modules
2828
run: npm install
2929

30-
- name: Install Gulp
31-
run: npm install -g gulp --force
32-
3330
- name: Install VSCE
3431
run: npm install -g vsce
3532

3633
- name: Lint
37-
run: gulp tslint
34+
run: npm run tslint
3835

3936
- name: Checkstyle
40-
run: gulp checkstyle
37+
working-directory: .\jdtls.ext
38+
run: .\mvnw.cmd checkstyle:check
4139

4240
- name: Build OSGi bundle
4341
run: npm run build-server

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ src/**
77
jdtls.ext/**
88
vscode/**
99
tsconfig.json
10-
gulpfile.js
10+
scripts/build/**
1111
.gitignore
1212
dist/**/test
1313
webpack.*.js

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,8 @@ You can tell that the glob pattern is supported. And here's more - you can incl
8080

8181
* Go to root folder:
8282
```
83-
npm install -g gulp
8483
npm install
85-
gulp build_server
84+
npm run build-server
8685
```
8786

8887
## Telemetry

gulpfile.js

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

0 commit comments

Comments
 (0)