Skip to content

Commit 57206de

Browse files
author
Justin
committed
Bump version to 1.1.0-beta-3
1 parent 5e0c073 commit 57206de

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.1.0-beta-3
2+
3+
* Module is now public
4+
15
### 1.1.0-beta-2
26

37
* Fixed component bindings

build.fsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ let yarn = ProcessHelper.tryFindFileOnPath (if isWindows then "yarn.cmd" else "y
1414

1515
// Filesets
1616
let projects = !! "src/**.fsproj"
17+
let buildDir = "src/bin"
1718

1819

1920
let dotnetcliVersion = "1.0.1"
@@ -27,6 +28,11 @@ Target "InstallDotNetCore" (fun _ ->
2728
dotnetExePath <- DotNetCli.InstallDotNetSDK dotnetcliVersion
2829
)
2930

31+
Target "Clean" (fun _ ->
32+
CleanDir buildDir
33+
runDotnet "src" "restore"
34+
)
35+
3036

3137
// Target "Install" (fun _ ->
3238
// Npm (fun p ->

src/Fable.Helpers.ReactToolbox.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module internal Fable.Helpers.ReactToolbox
1+
module Fable.Helpers.ReactToolbox
22

33
open Fable.Core
44
open Fable.Import

0 commit comments

Comments
 (0)