mirror of https://github.com/sbt/sbt.git
Bump vscode-sbt-scala version to 0.1.0
This commit is contained in:
parent
74ddddc8e5
commit
62ecd417da
|
|
@ -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.
|
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.
|
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",
|
"name": "vscode-sbt-scala",
|
||||||
"displayName": "Scala (sbt)",
|
"displayName": "Scala (sbt)",
|
||||||
"version": "0.0.2",
|
"version": "0.1.0",
|
||||||
"author": "Lightbend, Inc.",
|
"author": "Lightbend, Inc.",
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"publisher": "lightbend",
|
"publisher": "lightbend",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue