From c97c2201770da0b2f6be5875ac2813de1a8ce55d Mon Sep 17 00:00:00 2001 From: Pavel Murygin Date: Tue, 25 May 2021 12:57:56 +0300 Subject: [PATCH] move vscode plugin into the repo root --- .../.gitattributes => .gitattributes | 0 .github/workflows/vscode_highlight.yml | 5 +---- vscode-highlight/.gitignore => .gitignore | 0 .../.vscode => .vscode}/launch.json | 0 .../.vscodeignore => .vscodeignore | 0 vscode-highlight/CHANGELOG.md => CHANGELOG.md | 0 vscode-highlight/LICENSE => LICENSE | 0 README.md | 17 ++++++++++++---- vscode-highlight/icon.png => icon.png | Bin ...ration.json => language-configuration.json | 0 vscode-highlight/package.json => package.json | 0 .../aqua.tmLanguage.json | 0 ...ickstart.md => vsc-extension-quickstart.md | 0 vscode-highlight/README.md | 19 ------------------ 14 files changed, 14 insertions(+), 27 deletions(-) rename vscode-highlight/.gitattributes => .gitattributes (100%) rename vscode-highlight/.gitignore => .gitignore (100%) rename {vscode-highlight/.vscode => .vscode}/launch.json (100%) rename vscode-highlight/.vscodeignore => .vscodeignore (100%) rename vscode-highlight/CHANGELOG.md => CHANGELOG.md (100%) rename vscode-highlight/LICENSE => LICENSE (100%) rename vscode-highlight/icon.png => icon.png (100%) rename vscode-highlight/language-configuration.json => language-configuration.json (100%) rename vscode-highlight/package.json => package.json (100%) rename {vscode-highlight/syntaxes => syntaxes}/aqua.tmLanguage.json (100%) rename vscode-highlight/vsc-extension-quickstart.md => vsc-extension-quickstart.md (100%) delete mode 100644 vscode-highlight/README.md diff --git a/vscode-highlight/.gitattributes b/.gitattributes similarity index 100% rename from vscode-highlight/.gitattributes rename to .gitattributes diff --git a/.github/workflows/vscode_highlight.yml b/.github/workflows/vscode_highlight.yml index cc90be8..417d043 100644 --- a/.github/workflows/vscode_highlight.yml +++ b/.github/workflows/vscode_highlight.yml @@ -38,19 +38,17 @@ jobs: - name: Get version from npm and increment run: | - cd vscode-highlight VERSION="1.0.${{ github.run_number }}" PKG_NAME="$(cat package.json | jq -r .name)" # save info to env echo "FINAL_VERSION=$VERSION" | tee -a $GITHUB_ENV echo "PKG_NAME=$PKG_NAME" | tee -a $GITHUB_ENV - echo "PKG_FILE=vscode-highlight/${PKG_NAME}-${VERSION}.vsix" | tee -a $GITHUB_ENV + echo "PKG_FILE=${PKG_NAME}-${VERSION}.vsix" | tee -a $GITHUB_ENV ### Set version - name: Set version to ${{ env.FINAL_VERSION }} run: | - cd vscode-highlight yarn version --new-version ${{ env.FINAL_VERSION }} --no-git-tag-version ### Pack npm package @@ -60,7 +58,6 @@ jobs: registry-url: "https://registry.npmjs.org" - name: build package run: | - cd vscode-highlight npm i -g vsce vsce package diff --git a/vscode-highlight/.gitignore b/.gitignore similarity index 100% rename from vscode-highlight/.gitignore rename to .gitignore diff --git a/vscode-highlight/.vscode/launch.json b/.vscode/launch.json similarity index 100% rename from vscode-highlight/.vscode/launch.json rename to .vscode/launch.json diff --git a/vscode-highlight/.vscodeignore b/.vscodeignore similarity index 100% rename from vscode-highlight/.vscodeignore rename to .vscodeignore diff --git a/vscode-highlight/CHANGELOG.md b/CHANGELOG.md similarity index 100% rename from vscode-highlight/CHANGELOG.md rename to CHANGELOG.md diff --git a/vscode-highlight/LICENSE b/LICENSE similarity index 100% rename from vscode-highlight/LICENSE rename to LICENSE diff --git a/README.md b/README.md index 58883e4..afa8a3e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,19 @@ -# Tooling for aqua language +# aqua syntax highliting -This repository contains a collection of tools for developing with the `aqua` programming language +Syntax highliting for `aqua` programming language -## Syntax highlining +## Features -See [vscode-highlight](vscode-highlight) +Enables syntax highliting for `aqua` programming language +## Installation +In Visual Studio Code go to the extensions pane, click on the ellipsis symbol -> "Install from VSIX" +## Developing + +see [vsc-extension-quickstart.md](vsc-extension-quickstart.md) + +## License + +[Apache 2.0](LICENSE) diff --git a/vscode-highlight/icon.png b/icon.png similarity index 100% rename from vscode-highlight/icon.png rename to icon.png diff --git a/vscode-highlight/language-configuration.json b/language-configuration.json similarity index 100% rename from vscode-highlight/language-configuration.json rename to language-configuration.json diff --git a/vscode-highlight/package.json b/package.json similarity index 100% rename from vscode-highlight/package.json rename to package.json diff --git a/vscode-highlight/syntaxes/aqua.tmLanguage.json b/syntaxes/aqua.tmLanguage.json similarity index 100% rename from vscode-highlight/syntaxes/aqua.tmLanguage.json rename to syntaxes/aqua.tmLanguage.json diff --git a/vscode-highlight/vsc-extension-quickstart.md b/vsc-extension-quickstart.md similarity index 100% rename from vscode-highlight/vsc-extension-quickstart.md rename to vsc-extension-quickstart.md diff --git a/vscode-highlight/README.md b/vscode-highlight/README.md deleted file mode 100644 index afa8a3e..0000000 --- a/vscode-highlight/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# aqua syntax highliting - -Syntax highliting for `aqua` programming language - -## Features - -Enables syntax highliting for `aqua` programming language - -## Installation - -In Visual Studio Code go to the extensions pane, click on the ellipsis symbol -> "Install from VSIX" - -## Developing - -see [vsc-extension-quickstart.md](vsc-extension-quickstart.md) - -## License - -[Apache 2.0](LICENSE)