| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent cfd12c9 commit 2356afb
7 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -35,10 +35,10 @@ jobs: | |||
| 35 | 35 | run: npm install | |
| 36 | 36 | ||
| 37 | 37 | - name: Install build tools | |
| 38 | - run: npm install -g vsce gulp typescript | ||
| 38 | + run: npm install -g vsce typescript | ||
| 39 | 39 | ||
| 40 | 40 | - name: Lint | |
| 41 | - run: gulp tslint | ||
| 41 | + run: npm run tslint | ||
| 42 | 42 | ||
| 43 | 43 | - name: Package | |
| 44 | 44 | run: vsce package | |
@@ -71,10 +71,10 @@ jobs: | |||
| 71 | 71 | run: npm install | |
| 72 | 72 | ||
| 73 | 73 | - name: Install build tools | |
| 74 | - run: npm install -g vsce gulp typescript --force | ||
| 74 | + run: npm install -g vsce typescript --force | ||
| 75 | 75 | ||
| 76 | 76 | - name: Lint | |
| 77 | - run: gulp tslint | ||
| 77 | + run: npm run tslint | ||
| 78 | 78 | ||
| 79 | 79 | - name: Package | |
| 80 | 80 | run: vsce package | |
@@ -107,10 +107,10 @@ jobs: | |||
| 107 | 107 | run: npm install | |
| 108 | 108 | ||
| 109 | 109 | - name: Install build tools | |
| 110 | - run: npm install -g vsce gulp typescript | ||
| 110 | + run: npm install -g vsce typescript | ||
| 111 | 111 | ||
| 112 | 112 | - name: Lint | |
| 113 | - run: gulp tslint | ||
| 113 | + run: npm run tslint | ||
| 114 | 114 | ||
| 115 | 115 | - name: Package | |
| 116 | 116 | run: vsce package | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ test/** | |||
| 5 | 5 | src/** | |
| 6 | 6 | **/*.map | |
| 7 | 7 | tsconfig.json | |
| 8 | - gulpfile.js | ||
| 8 | + scripts/build/** | ||
| 9 | 9 | .gitignore | |
| 10 | 10 | images/docs/** | |
| 11 | 11 | testprojects/** | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,11 +38,11 @@ npm install | |||
| 38 | 38 | ||
| 39 | 39 | ### Build and Run | |
| 40 | 40 | #### 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`. | ||
| 42 | 42 | ```bash | |
| 43 | - npx gulp build_server | ||
| 43 | + npm run build-server | ||
| 44 | 44 | ``` | |
| 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). | ||
| 46 | 46 | ||
| 47 | 47 | #### Debug the Extension | |
| 48 | 48 | Open folder `vscode-java-debug` in VS Code, or simply execute following commands if you have `code` in your system PATH. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments