fable-compiler / fable-promise

Fable bindings for JS promise
http://fable.io/fable-promise/
MIT License
19 stars 8 forks source link

Bump version for Fable.Cli, Fable.Core, mocha, fable-publish-utils #10

Closed delneg closed 3 years ago

delneg commented 3 years ago

Added missing "postinstall" script for dotnet tool restore Also deleted fable-compiler-js, dunno what it's for, tests ran fine

MangelMaxime commented 3 years ago

Hello fable-compiler-js was used to execute the build.fsx file which is a Fable application.

But I think with Fable 3 we can use dotnet fable build.fsx --run publish or something like that.

alfonsogarciacaro commented 3 years ago

Yes, that's right. As @MangelMaxime says, using something like dotnet fable build.fsx --runScript publish should work (note the argument is --runScript, see https://github.com/fable-compiler/Fable/issues/2335). Although lately I made the publish utils compatible with .NET so it's more convenient to just use F# interactive: dotnet fsi build.fsx publish (I'm still using npm for the distribution, because it's much simpler than Nuget to package source files).

delneg commented 3 years ago

Fixed according to comments above

alfonsogarciacaro commented 3 years ago

Thanks @delneg!