Skip to content

Commit 4b71dda

Browse files
committed
Fix the dependency on oscript-ast-walker.
1 parent 3fc503f commit 4b71dda

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.2.1
4+
5+
Fix the dependency on oscript-ast-walker.
6+
37
## 0.2.0
48

59
* Add a language server with the syntax-checking, quick fixes, built-in type completion, hover hints, symbol outline, local identifier definition, references and renaming.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Web pages can highlight the OScript syntax of a code example [using JavaScript].
206206

207207
## License
208208

209-
Copyright (c) 2020-2021Ferdinand Prantl
209+
Copyright (c) 2020-2021 Ferdinand Prantl
210210

211211
The logo was based on an [original icon](https://icon-icons.com/icon/file-type-vscode/130084) published among [vscode by Roberto Huertas](https://icon-icons.com/pack/vscode/2107) under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) license. Thank you!
212212

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-oscript",
33
"displayName": "OScript Language",
44
"description": "Provides syntax checking and fixing, highlighting, autocompletion, hints, symbol outline, identifier recognition and renaming and other features for the OScript language in Visual Studio Code.",
5-
"version": "0.2.0",
5+
"version": "0.2.1",
66
"publisher": "prantlf",
77
"author": {
88
"name": "Ferdinand Prantl",

pkg/rollup.shared.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export default function (name, plugins = []) {
1919
commonjs(),
2020
...plugins,
2121
sucrase({
22-
exclude: ['node_modules/**'],
2322
transforms: ['typescript'],
2423
production
2524
}),

pkg/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "oscript-language-server",
33
"description": "Syntax checking, highlighting, hover hints and other support for the OScript language in Visual Studio Code.",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"author": {
66
"name": "Ferdinand Prantl",
77
"email": "prantlf@gmail.com",

0 commit comments

Comments
 (0)