-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79f968c
commit 7db9778
Showing
8 changed files
with
36 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# fable-library | ||
|
||
This folder contains files (JS, TypeScript and F#) that are used mainly by the `Replacements` module of the compiler. The precompiled files are not distributed independently but are included in the compiler package. | ||
Core library used by F# projects compiled with [Fable](https://fable.io). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
{ | ||
"private": true, | ||
"sideEffects": false, | ||
"type": "module" | ||
} | ||
"name": "fable-library", | ||
"version": "0.1.0", | ||
"description": "Core library used by F# projects compiled with fable.io", | ||
"author": "Fable Contributors", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/fable-compiler/Fable.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/fable-compiler/Fable/issues" | ||
}, | ||
"homepage": "https://fable.io", | ||
"keywords": [ | ||
"fable", | ||
"fable-compiler", | ||
"fsharp", | ||
"F#" | ||
] | ||
} |
7db9778
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alfonsogarciacaro JS build seems to be failing in
main
.7db9778
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh my, this always when I add a "tiny" change to a release 🤦 Thanks for letting me know, I've sent a PR with the fix. Not sure if it needs a new release, it seems to affect only Nodejs. Before the release I tested fable-library with Vitejs and it worked.
7db9778
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alfonsogarciacaro A new release would be nice, because some project does use Fable on top of Node.js.
So if people, update their Fable version they will break if I understood what you said.