Version 2.10 of Foal is out! This small release brings some tiny improvements.
What's Foal?
It is a full-featured Node.js framework simple and easy to use, written in TypeScript and with a complete documentation.
@foal/cli
package included by default as dev dependency
Issue: #1097
The @foal/cli
package is now installed by default as dev dependency. In this way, all commands of package.json
still work when deploying the application to a Cloud provider that does not have the CLI installed globally.
Contributor: @scho-to
Preventing the npm run develop
command to get stuck on some OS
The npm run develop
was getting stuck on some OS based on the configuration of the app. This issue is now fixed in new projects. For current applications, you will need to add a -r
flag to the package.json
commands using concurrently
.
Smaller main
function
The main
function that bootstraps the application is now smaller in new projects.
Article originally published here
Top comments (0)