Skip to content

Commit

Permalink
Update FCS
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Mar 28, 2019
1 parent 0f02fcf commit 183a2fe
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
Binary file modified lib/fcs/FSharp.Compiler.Service.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion src/Fable.Cli/Util.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Fable.Cli

module Literals =

let [<Literal>] VERSION = "2.2.0"
let [<Literal>] VERSION = "2.2.1"
let [<Literal>] CORE_VERSION = "2.1.0"
let [<Literal>] DEFAULT_PORT = 61225
let [<Literal>] FORCE = "force:"
Expand Down
4 changes: 4 additions & 0 deletions src/fable-compiler/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.2.1

* Update FCS

### 2.2.0

* Stable version
Expand Down
2 changes: 1 addition & 1 deletion src/fable-compiler/package-lock.json

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

2 changes: 1 addition & 1 deletion src/fable-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fable-compiler",
"version": "2.2.0",
"version": "2.2.1",
"main": "dist/index.js",
"description": "Fable compiler",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions src/fable-compiler/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ export default function start(cliArgs?: {}): ICompilerProxy {
child.on("error", (err) => {
console.error("Cannot spawn dotnet", err.message);
});
// child.stderr.on("data", (data) => {
// console.error(`child proccess errored: ${data}`);
// });
child.stderr.on("data", (data) => {
console.error(`child proccess errored: ${data}`);
});
// child.on("close", (code) => {
// console.log(`child process exited with code ${code}`);
// });
Expand Down
2 changes: 1 addition & 1 deletion src/fable-standalone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fable-standalone",
"version": "1.0.1",
"version": "1.0.2",
"main": "dist/bundle.min.js",
"description": "Fable compiler",
"keywords": [
Expand Down

0 comments on commit 183a2fe

Please sign in to comment.