From 32f1090f42621a3f6964c87806d056c3ca6deb86 Mon Sep 17 00:00:00 2001 From: ncave <777696+ncave@users.noreply.github.com> Date: Wed, 25 Sep 2019 14:21:47 -0700 Subject: [PATCH] Added RollForward to projects --- package-lock.json | 18 +++++++++--------- package.json | 2 +- .../src/fable-compiler-js.fsproj | 1 + .../test/bench-compiler/bench-compiler.fsproj | 1 + src/fable-standalone/test/bench/bench.fsproj | 1 + src/quicktest/Quicktest.fsproj | 1 + src/tools/ASTViewer/ASTViewer.fsproj | 1 + .../InjectProcessor/InjectProcessor.fsproj | 1 + 8 files changed, 16 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index 56c6f655bf..babee15e16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3187,15 +3187,15 @@ "integrity": "sha512-0vF3JIWL0PWNUoi/v2piPBS3CypnpFbF5/TWM+m79BwNjbxZL88+hv6kSXznSRNeqdC0ivYHOQKzmua3ov0VHA==" }, "fable-compiler-js": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fable-compiler-js/-/fable-compiler-js-1.0.5.tgz", - "integrity": "sha512-Q7typXTOC/JRkbg0zOdIE6OxeER0NjQmHEH0ycOq4RILCo04HvuTTi1kDUjBejIZJ9Mq7C5Ag3JSOrfLp+vTRQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fable-compiler-js/-/fable-compiler-js-1.1.0.tgz", + "integrity": "sha512-rNK566x5dEXqQ9Veo97fFdjfg5+DP2EOZGuJxllvrhh+aQXDV+YSdni1UnmPkoxiJ6eAA/lpiTBieUyR6eMsJw==", "requires": { - "@babel/core": "^7.4.3", - "@babel/plugin-transform-modules-commonjs": "^7.4.3", + "@babel/core": "^7.6.0", + "@babel/plugin-transform-modules-commonjs": "^7.6.0", "fable-babel-plugins": "^2.2.0", "fable-metadata": "^1.1.2", - "fable-standalone": "^1.1.5" + "fable-standalone": "^1.2.0" } }, "fable-loader": { @@ -3225,9 +3225,9 @@ } }, "fable-standalone": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/fable-standalone/-/fable-standalone-1.1.7.tgz", - "integrity": "sha512-SD+TrgrMyGp4w5QSmhtJ3zRXqWxI9X4BDZ2TnUy4ioUwyr7GIuMOMHDX4jZeU0P5ic3+YOpIavIdIqBQ6i3GhQ==" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fable-standalone/-/fable-standalone-1.2.0.tgz", + "integrity": "sha512-sNn3PsLvwSDEmrBbroCGT1H9eYxwN8GfzHQX/vJ/zoAXQZOoibxz5efX/Gss19kx3qcHi60FtHimmCHpLYzF+Q==" }, "fast-deep-equal": { "version": "2.0.1", diff --git a/package.json b/package.json index 0dbc5dd6d7..014baa357e 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "download-cli": "^1.1.1", "fable-babel-plugins": "^2.2.0", "fable-compiler": "^2.4.2", - "fable-compiler-js": "^1.0.5", + "fable-compiler-js": "^1.1.0", "fable-loader": "^2.1.8", "fable-splitter": "^2.1.11", "ghreleases": "^3.0.2", diff --git a/src/fable-compiler-js/src/fable-compiler-js.fsproj b/src/fable-compiler-js/src/fable-compiler-js.fsproj index cfad1181f7..1f5557d3de 100644 --- a/src/fable-compiler-js/src/fable-compiler-js.fsproj +++ b/src/fable-compiler-js/src/fable-compiler-js.fsproj @@ -3,6 +3,7 @@ Exe netcoreapp2.1 + Major diff --git a/src/fable-standalone/test/bench-compiler/bench-compiler.fsproj b/src/fable-standalone/test/bench-compiler/bench-compiler.fsproj index 31e13fbf23..74d9cea5bb 100644 --- a/src/fable-standalone/test/bench-compiler/bench-compiler.fsproj +++ b/src/fable-standalone/test/bench-compiler/bench-compiler.fsproj @@ -3,6 +3,7 @@ Exe netcoreapp2.1 + Major $(DefineConstants);DOTNET_FILE_SYSTEM $(OtherFlags) --crossoptimize- true diff --git a/src/fable-standalone/test/bench/bench.fsproj b/src/fable-standalone/test/bench/bench.fsproj index bfba76e29e..4c1896de80 100644 --- a/src/fable-standalone/test/bench/bench.fsproj +++ b/src/fable-standalone/test/bench/bench.fsproj @@ -3,6 +3,7 @@ Exe netcoreapp2.1 + Major $(DefineConstants);DOTNET_FILE_SYSTEM true diff --git a/src/quicktest/Quicktest.fsproj b/src/quicktest/Quicktest.fsproj index 6d861d1034..72648770f0 100644 --- a/src/quicktest/Quicktest.fsproj +++ b/src/quicktest/Quicktest.fsproj @@ -2,6 +2,7 @@ Exe netcoreapp2.1 + Major diff --git a/src/tools/ASTViewer/ASTViewer.fsproj b/src/tools/ASTViewer/ASTViewer.fsproj index f08edf2794..0730c98e50 100644 --- a/src/tools/ASTViewer/ASTViewer.fsproj +++ b/src/tools/ASTViewer/ASTViewer.fsproj @@ -2,6 +2,7 @@ Exe netcoreapp2.1 + Major true diff --git a/src/tools/InjectProcessor/InjectProcessor.fsproj b/src/tools/InjectProcessor/InjectProcessor.fsproj index 9e6d201ac7..4f81f6695a 100644 --- a/src/tools/InjectProcessor/InjectProcessor.fsproj +++ b/src/tools/InjectProcessor/InjectProcessor.fsproj @@ -2,6 +2,7 @@ Exe netcoreapp2.1 + Major true