-
Notifications
You must be signed in to change notification settings - Fork 85
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
28f7ee5
commit 8cdc9ab
Showing
3 changed files
with
28 additions
and
14 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
8cdc9ab
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.
Typescript 3.8 and other changes
Typescript 3.8 has been released.
There are no huge changes in this version, but an interesting new feature is Type-only imports. This feature allows to import interfaces that, when compiled using
transpileOnly
option, will get removed from the generated javascript, avoiding not found warnings in webpack. The framework has already been updated to make use of import type, so we can remove the warning filtering inwebpack.config
.Additionally, this commit adds an auto-incrementing version number to
Southwind.React
, this fixesVersionChangedAlert
not working since the jump to .Net Core : signumsoftware/southwind@7153b768cdc9ab
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.
Awesome!