mirror of https://github.com/sbt/sbt.git
Merge pull request #3785 from eed3si9n/wip/vscode-bump
Bump vscode-sbt-scala version to 0.1.0
This commit is contained in:
commit
8db6cd7a9e
|
|
@ -200,3 +200,22 @@ Building Documentation
|
|||
======================
|
||||
|
||||
The scala-sbt.org site documentation is a separate project [website](https://github.com/sbt/website). Follow [the steps in the README](https://github.com/sbt/website#scala-sbtorg) to generate the documentation.
|
||||
|
||||
|
||||
Note for maintainers
|
||||
====================
|
||||
|
||||
Publishing VS Code Extensions
|
||||
-----------------------------
|
||||
|
||||
https://code.visualstudio.com/docs/extensions/publish-extension
|
||||
|
||||
```
|
||||
$ sbt
|
||||
> vscodePlugin/compile
|
||||
> exit
|
||||
cd vscode-sbt-scala/client
|
||||
# update version number in vscode-sbt-scala/client/package.json
|
||||
$ vsce package
|
||||
$ vsce publish
|
||||
```
|
||||
|
|
|
|||
|
|
@ -3,4 +3,7 @@ Scala language support using sbt
|
|||
|
||||
This is an experimental Scala language support using sbt as the language server.
|
||||
|
||||
To try this, use sbt 1.1.0-M1 and above. Saving `*.scala` will trigger `compile` task.
|
||||
To try this, use sbt 1.1.0-RC1 or above.
|
||||
|
||||
- Saving `*.scala` will trigger `compile` task.
|
||||
- Jump to definition support for class names.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "vscode-sbt-scala",
|
||||
"displayName": "Scala (sbt)",
|
||||
"version": "0.0.2",
|
||||
"version": "0.1.0",
|
||||
"author": "Lightbend, Inc.",
|
||||
"license": "BSD-3-Clause",
|
||||
"publisher": "lightbend",
|
||||
|
|
|
|||
Loading…
Reference in New Issue