All Versions
627
Latest Version
Avg Release Cycle
5 days
Latest Release
-
Changelog History
Page 62
Changelog History
Page 62
-
v0.7.2 Changes
- 🛠 Fix sourcemap paths on Windows (#6)
-
v0.7.1 Changes
- 0️⃣ Named functions can be used as default exports from a bundle
- Method calls are assumed to mutate the owner (i.e.
foo.bar()
mutatesfoo
) (#13) - 0️⃣
options.indent
can be used to control indentation of resulting bundle.options.true
(default) means 'auto',options.false
means empty string. Alternatively specify whitespace e.g.' '
or'\t'
(#5)
-
v0.7.0 Changes
- Ensure statements are always separated by a newline (#9)
- 👉 Use CommonJS
exports
correctly (UMD exports) - Throw error if
moduleName
is required but missing (UMD exports) - Attach IIFE global to
this
rather thanwindow
- 👍 Allow names inside bundle to the the names of
Object.prototype
properties (#12) - Keep exports live (#11)
-
v0.6.5 Changes
- ➕ Add sourceMappingURL comment to code, as appropriate
- Higher resolution sourcemaps
-
v0.6.4 Changes
- 🛠 Fix CJS bundling with default export
-
v0.6.3 Changes
- 🛠 Fix exports and external module imports with some output formats
- 🛠 Fix endless cycle bug on Windows (#3) - thanks @Bobris
-
v0.6.2 Changes
- Permit assignments to properties of imported bindings
-
v0.6.1 Changes
- 👌 Support for basic transformers
-
v0.6.0 Changes
- 💥 BREAKING -
rollup.rollup
andbundle.write
both take a single options argument - 💥 BREAKING - external modules must be declared upfront with
options.external: [...]
- 📦 Non-relative module paths will be resolved by looking for
jsnext:main
fields in the appropriatepackage.json
files. This behaviour can be overridden by passing an alternativeresolveExternal
function - 🛠 Fix sourcemap options
- 📦 Include CLI files in npm package (duh)
- 💥 BREAKING -
-
v0.5.0 Changes
- 💻 Command line interface
- Sourcemap generation
- Correct behaviour with
export { x as y } from 'z'