Skip to content

Commit dcd80c1

Browse files
authored
Merge pull request #516 from fwcd/remove-grammar
Remove the TextMate grammar from this repo
2 parents 6dba9f3 + 9bb443f commit dcd80c1

File tree

12 files changed

+3
-761
lines changed

12 files changed

+3
-761
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
tag=$(basename "${{ github.ref }}")
2424
echo "tag=$tag" >> $GITHUB_OUTPUT
2525
- name: Build distribution
26-
run: ./gradlew :server:distZip :grammars:distZip
26+
run: ./gradlew :server:distZip
2727
- name: Create release
2828
env:
2929
GH_TOKEN: ${{ github.token }}
@@ -37,7 +37,7 @@ jobs:
3737
GH_REPO: ${{ github.repository }}
3838
run: |
3939
tag="${{ steps.tag.outputs.tag }}"
40-
gh release upload "$tag" {server,grammars}/build/distributions/*
40+
gh release upload "$tag" server/build/distributions/*
4141
- name: Deploy Maven artifacts to GitHub Packages
4242
run: ./gradlew :shared:publish :server:publish
4343
env:

.vscode/launch.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,6 @@
3030
"request": "attach",
3131
"hostName": "localhost",
3232
"port": 5005
33-
},
34-
{
35-
"type": "extensionHost",
36-
"name": "Run Grammar Dev Extension",
37-
"request": "launch",
38-
"args": [
39-
"--disable-extension=fwcd.kotlin",
40-
"--extensionDevelopmentPath=${workspaceFolder}/grammars/vscode-grammar-dev"
41-
]
4233
}
4334
]
4435
}

BUILDING.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@ To create a ZIP-archive of the language server, run:
2121

2222
>`./gradlew :server:distZip`
2323
24-
## Grammars
25-
26-
### Packaging
27-
To create a ZIP-archive of the grammars, run:
28-
29-
>`./gradlew :grammars:distZip`
30-
3124
## Gradle Tasks
3225
This paragraph assumes that you are familiar with Gradle's [task system](https://docs.gradle.org/current/userguide/build_lifecycle.html). In short: Every task describes an atomic piece of work and may depend on other tasks. Task dependencies will automatically be executed. The following subsections describe the available tasks for each module of this project.
3326

@@ -43,9 +36,3 @@ This paragraph assumes that you are familiar with Gradle's [task system](https:/
4336
| Build | `./gradlew :server:build` | Builds, tests and packages the language server |
4437
| Package for Release | `./gradlew :server:distZip` | Creates a release zip in `server/build/distributions`. If any dependencies have changed since the last release, a new license report should be generated and placed in `src/main/dist` before creating the distribution. |
4538
| Generate License Report | `./gradlew :server:licenseReport` | Generates a license report from the dependencies in `server/build/reports/licenses` |
46-
47-
### Grammars (:grammars)
48-
49-
| Task | Command | Description |
50-
| ---- | ------- | ----------- |
51-
| Package for Release | `./gradlew :grammars:distZip` | Creates a zip of the grammars in `grammars/build/distributions` |

0 commit comments

Comments
 (0)