Releases: stealjs/steal-tools
2.0.8
2.0.7
This fixes a bug related to modlet folders and the bundle
configuration for progressively loaded bundles. Now the following works:
"bundle": [
"pages/**/"
]
Which will find modules like:
- pages/home/home
- pages/cart/cart
But will not pick up
- pages/cart/cart-test
2.0.6
2.0.5
2.0.4
2.0.1
2.0.0
This is the second major release of steal-tools 2.0.0. When upgrading be sure to also get steal 2.0.0. See the migration guide and upgrade today.
Major features
Tree shaking
In steal-tools 2.0.0 unused exports (and unused modules) are tree shaken away. You don't need to do anything to get this behavior. In the chance that your code doesn't work well with tree shaking, you can disable it through a build option:
stealTools.build({}, {
treeShaking: false
});
The migration guide explains these choices.
Envify on by default
In steal 1.x you could enable envify, which replaces usage of process.env
with the current environment variables. In 2.0 this behavior is on by default.
1.11.9
This is a patch release fixing these issues: