move vscode plugin into the repo root

This commit is contained in:
Pavel Murygin 2021-05-25 12:57:56 +03:00
parent 03148eae86
commit c97c220177
14 changed files with 14 additions and 27 deletions

View File

@ -38,19 +38,17 @@ jobs:
- name: Get version from npm and increment - name: Get version from npm and increment
run: | run: |
cd vscode-highlight
VERSION="1.0.${{ github.run_number }}" VERSION="1.0.${{ github.run_number }}"
PKG_NAME="$(cat package.json | jq -r .name)" PKG_NAME="$(cat package.json | jq -r .name)"
# save info to env # save info to env
echo "FINAL_VERSION=$VERSION" | tee -a $GITHUB_ENV echo "FINAL_VERSION=$VERSION" | tee -a $GITHUB_ENV
echo "PKG_NAME=$PKG_NAME" | 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 ### Set version
- name: Set version to ${{ env.FINAL_VERSION }} - name: Set version to ${{ env.FINAL_VERSION }}
run: | run: |
cd vscode-highlight
yarn version --new-version ${{ env.FINAL_VERSION }} --no-git-tag-version yarn version --new-version ${{ env.FINAL_VERSION }} --no-git-tag-version
### Pack npm package ### Pack npm package
@ -60,7 +58,6 @@ jobs:
registry-url: "https://registry.npmjs.org" registry-url: "https://registry.npmjs.org"
- name: build package - name: build package
run: | run: |
cd vscode-highlight
npm i -g vsce npm i -g vsce
vsce package vsce package

View File

@ -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)

View File

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@ -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)