Releases: stealjs/steal
1.11.7
This is a patch release, fixing projects that use the folder/index
convention and dev bundles.
Pull Requests
1.11.5
This is a patch release, fixing an issue where a syntax error in a child module could result in the wrong module showing up in a codeframe.
Pull requests
1.11.4
This is a patch release, fixing an issue where multiple packages with their own babelOptions could conflict with each other.
Pull Requests
1.11.3
1.11.1
This is a patch release, fixing an issue where errors lost their stack trace if a dependent module.
Pull Requests
1.11.0
1.10.0
This is a minor releasing add a few improved error messages.
Pull Requests
1.9.2
1.9.0
This is a minor releasing adding error handling to the live-reload
module.
Now when an error occurs reloading a module, an Error is called as the first argument to the callback.
import reload from "live-reload";
reload(function(err){
if(err) {
displayErrorMessage(err);
} else {
// Do whatever is normal
}
});
1.8.0
This is a minor release, featuring improved error messaging with malformed JSON in a package.json.
Features
package.json error messaging
With #1347 we know get a clear indication of what is wrong with a package.json: