Skip to content

Commit

Permalink
Update readme and add display name (#53)
Browse files Browse the repository at this point in the history
* update readme and display

* 0.1.1

Co-authored-by: Matt Masson <[email protected]>
  • Loading branch information
mattmasson and Matt Masson authored Jun 23, 2020
1 parent 429a36d commit 27b00dc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Power Query language service for VS Code

Provides a language service for the [Power Query / M formula language](https://powerquery.microsoft.com/).
Provides a language service for the [Power Query / M formula language](https://powerquery.microsoft.com/) with the following capabilities:

- Suggestions / Auto complete (Based on M standard library functions, and keywords)
- Parameter hints
- Hover
- Code formatting

## How to build

Expand All @@ -16,17 +21,14 @@ npm install
npm run build
```

## How to run tests
## How to run command line tests

```cmd
cd server
npm run test
```

## How to clean

```cmd
git clean -xdf
```
There is also a UI test suite that can be run from VS Code.

## Generate vscode extension

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "vscode-powerquery",
"version": "0.1.0",
"version": "0.1.1",
"displayName": "Power Query / M Language",
"description": "Language service for the Power Query / M formula language",
"author": "Microsoft Corporation",
"license": "MIT",
Expand Down Expand Up @@ -36,13 +37,12 @@
"vscode": "^1.40.0"
},
"categories": [
"Other",
"Programming Languages"
],
"activationEvents": [
"onLanguage:powerquery"
],
"publisher": "powerquery",
"publisher": "PowerQuery",
"contributes": {
"configuration": {
"type": "object",
Expand Down

0 comments on commit 27b00dc

Please sign in to comment.