Skip to content

Releases: stealjs/steal

1.11.7

30 May 19:38
Compare
Choose a tag to compare

This is a patch release, fixing projects that use the folder/index convention and dev bundles.

Pull Requests

1.11.5

19 Apr 15:06
Compare
Choose a tag to compare

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

30 Mar 13:02
Compare
Choose a tag to compare

This is a patch release, fixing an issue where multiple packages with their own babelOptions could conflict with each other.

Pull Requests

#1377 https://github.com/stealjs/steal/pull/1377

1.11.3

30 Mar 13:48
Compare
Choose a tag to compare

This is a patch release, fixing an issue where during the build steal.config() options would be applied to the production build.

1.11.1

28 Mar 21:01
Compare
Choose a tag to compare

This is a patch release, fixing an issue where errors lost their stack trace if a dependent module.

Pull Requests

1.11.0

21 Mar 14:58
Compare
Choose a tag to compare

Improved error messaging on SyntaxErrors during parsing.

This is a minor release, improving the SyntaxErrors generated during parsing, both for ES and CommonJS modules. On the ES side this change removes the unhelpful Babel stack trace and puts instead a stack trace to where the error occurred.

screen shot 2018-03-21 at 10 56 57 am

1.10.0

19 Mar 12:45
Compare
Choose a tag to compare

1.9.2

14 Mar 15:53
Compare
Choose a tag to compare

This is a patch release, fixing a bug where modules in a failed loading state were not recoverable after a live-reload that fixes the underlying problem.

1.9.0

06 Mar 20:13
Compare
Choose a tag to compare

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

05 Mar 19:02
Compare
Choose a tag to compare

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:

screen shot 2018-03-02 at 4 48 44 pm

Pull Requests