Skip to content

Commit 4d1644b

Browse files
committed
minor fixes
1 parent 866185a commit 4d1644b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

build.fsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Target "Clean" (fun _ ->
7676
CopyFiles "release" ["README.md"; "LICENSE.md"; "RELEASE_NOTES.md"]
7777
)
7878

79-
Target "RunScript" (fun () ->
79+
Target "RunScript" (fun _ ->
8080
run npmTool "install" "release"
8181
run npmTool "run build" "release"
8282
)
@@ -89,12 +89,12 @@ Target "CopyFSACToTests" (fun _ ->
8989
|> CopyFiles releaseTestsBin
9090
)
9191

92-
Target "BuildTest" (fun () ->
92+
Target "BuildTest" (fun _ ->
9393
run npmTool "install" "test"
9494
run npmTool "run build" "test"
9595
)
9696

97-
Target "RunTest" (fun () ->
97+
Target "RunTest" (fun _ ->
9898
run npmTool "install" "release_test"
9999
run npmTool "run test" "release_test"
100100
)
@@ -235,7 +235,7 @@ Target "Test" DoNothing
235235
==> "BuildTest"
236236
==> "RunTest"
237237
==> "Test"
238-
==> "BuildPackage"
238+
//==> "BuildPackage"
239239

240240
"Clean"
241241
==> "RunScript"

paket.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ GIT
3131
GITHUB
3232
remote: fsharp/FAKE
3333
modules/Octokit/Octokit.fsx (934dc8313e2c54793813058fe2540511ad3b8468)
34-
Octokit (>= 0.20)
34+
Octokit
3535
remote: Ionide/ionide-vscode-helpers
3636
Fable.Import.Axios.fs (318127fa718355e06b4b1c34d15d1bcaf61279bf)
3737
Fable.Import.VSCode.fs (318127fa718355e06b4b1c34d15d1bcaf61279bf)

release/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,15 @@
173173
"FSharp.logLanguageServiceRequests": {
174174
"type": "string",
175175
"default": "none",
176-
"description": "Enable logging language service requests (FSAC) to an output channel, the developer tools console, or both",
176+
"description": "Enable logging for F# Language Service requests (FSAC) to either an output channel, the developer tools console, or both",
177177
"enum": [
178178
"none", "output", "devconsole", "both"
179179
]
180180
},
181181
"FSharp.logLanguageServiceRequestsOutputWindowLevel": {
182182
"type": "string",
183183
"default": "INFO",
184-
"description": "Determines how verbose the output window logging is.",
184+
"description": "Set the verbosity for F# Language Service Output Channel",
185185
"enum": [
186186
"DEBUG", "INFO", "WARN", "ERROR"
187187
]
@@ -237,7 +237,7 @@
237237
],
238238
"extensionDependencies": [
239239
"vscode.fsharp"
240-
],
240+
],
241241
"scripts": {
242242
"build": "fable ../src/Ionide.FSharp.fsproj -s -o ../release -m commonjs --verbose"
243243
},
@@ -248,8 +248,8 @@
248248
"xhr2": "*"
249249
},
250250
"devDependencies": {
251-
"fable-compiler": "^0.5.4",
251+
"fable-compiler": "^0.5.6",
252252
"mocha": "^3.0.2",
253-
"vscode": "^0.11.15"
253+
"vscode": "^0.11.17"
254254
}
255255
}

0 commit comments

Comments
 (0)