Skip to content

Releases: stealjs/steal

1.2.3

08 Feb 18:59
Compare
Choose a tag to compare

This is a bug fix release that addresses an issue with live-reloading after an npm install.

steal-npm 1.0.9 contains a bug fix for live-reload. When doing an npm install with live-reload on, this keeps the internal state of the npm plugin for use thereafter.

1.2.2

07 Feb 20:29
Compare
Choose a tag to compare

This is a bug fix release that improves the CommonJS detection within AMD modules. Now things like:

define(function(require){
  var foo = "some string stuff require('bar');";
});

Will not contain false positives.

Bugs

1.2.1

07 Feb 14:19
Compare
Choose a tag to compare

1.2.1 is a bug fix release that fixes an issue that was causing the steal-tools tests to fail. See here.

This bug fix release makes it so that during a build if we encounter code such as:

require("./package");

Where ./package is actually a package.json, we will eventually retrieve the correct file after some retries.

1.2.0

07 Feb 13:12
Compare
Choose a tag to compare

The 1.2.0 release includes 2 huge new features as well as a few bug fixes. The highlights are the new globals configuration, and cache busting.

Features

  • New globals configuration - This provides a way to specify configuration so that globals can depend on non-globals:

    "steal": {
        "meta": {
            "foo": {
                "format": "global", 
                "globals": {
                    "$$$": "bar"
                }
            }
        }
    }

    Documentation is available here.

  • Cache busting is now included in Steal directly. This allows you to specify a cache version of your application which will be used as a query parameter.

    <script src="./dist/steal.production.js" cache-version="12345"></script>

Bugs

1.1.0

24 Jan 13:32
Compare
Choose a tag to compare

This release of Steal include a new feature which simplifies the use of steal-clone with default exports.

Issues

1.0.11

1.0.10

11 Jan 21:14
Compare
Choose a tag to compare

This is a bug fix release.

Bugs

  • 999 - When running in Node, make sure to add Production bundles

1.0.9

06 Jan 15:21
Compare
Choose a tag to compare

This is a bug fix release that fixes a bug related to cloning Steal.

Bugs

1.0.8

05 Jan 13:29
Compare
Choose a tag to compare

0.16.44

04 Jan 21:44
Compare
Choose a tag to compare