2019-08-27
- Normalize ids before looking up in named export map (#406)
- Update README.md with note on symlinks (#405)
2019-08-03
- Support preserveSymlinks: false (#401)
2019-06-27
- Make tests run with Node 6 again and update dependencies (#389)
- Handle builtins appropriately for resolve 1.11.0 (#395)
2019-05-15
- Use new Rollup@1.12 context functions, fix issue when resolveId returns an object (#387)
2019-04-04
2019-04-04
- Remove colon from module prefixes (#371)
2019-04-04
- Use shared extractAssignedNames, fix destructuring issue (#303)
2019-04-04
- Include typings in release (#382)
2019-04-03
- Add TypeScript types (#363)
2019-04-02
- Improve support for ES3 browsers (#364)
- Add note about monorepo usage to readme (#372)
- Add .js extension to generated helper file (#373)
2019-03-25
- Handle array destructuring assignment (#379)
2019-02-23
- Use correct context when manually resolving ids (#370)
2018-10-10
- Fix missing default warning, produce better code when importing known ESM default exports (#349)
- Refactor code and add prettier (#346)
2018-09-18
- Ignore virtual modules created by other plugins (#327)
- Add "location" and "process" to reserved words (#330)
2018-08-24
- Keep commonJS detection between instantiations (#338)
2018-08-09
- Handle object form of input (#329)
2018-07-27
- Make "from" a reserved word (#320)
2018-04-30
- Fix a caching issue (#316)
2018-04-30
- Re-publication of 9.1.0
2018-04-30
- Fix ordering of modules when using rollup 0.58 (#302)
- Do not automatically wrap modules with return statements in top level arrow functions (#302)
- Make rollup a peer dependency with a version range (#300)
- Re-release of 8.3.0 as #287 was actually a breaking change
- Better handle non-CJS files that contain CJS keywords (#285)
- Use rollup's plugin context
parse
function (#287) - Improve error handling (#288)
- Handle multiple entry points (#283)
- Extract named exports from exported object literals (#272)
- Fix when
options.external
is modified by other plugins (#264) - Recognize static template strings in require statements (#271)
- Don't import default from ES modules that don't export default (#206)
- Prevent duplicate default exports (#230)
- Only include default export when it exists (#226)
- Deconflict
require
aliases (#232)
- Fix magic-string deprecation warning
- Avoid using
index
as a variable name (#208)
- Compatibility with 0.48 (#220)
- Fix another
var
rewrite bug (#181)
- Remove declarators within a var declaration correctly (#179)
- Prefer the names dependencies are imported by for the common
var foo = require('foo')
pattern (#176)
- Allow certain
require
statements to pass through unmolested (#174)
- Handle duplicate default exports (#158)
- Fix exports with parentheses (#168)
- Rewrite
typeof module
,typeof module.exports
andtypeof exports
as'object'
(#151)
- Don't overwrite globals (#127)
- Rewrite top-level
define
asundefined
, so AMD-first UMD blocks do not cause breakage (#144) - Support ES2017 syntax (#132)
- Deconflict exported reserved keywords (#116)
- Fix parenthesis wrapped exports (#120)
- Ensure named exports are added to default export in optimised modules (#112)
- Respect custom
namedExports
in optimised modules (#35)
- Deconflict against globals (#84)
- Optimise modules that don't need to be wrapped in a function (#106)
- Ignore modules containing
import
andexport
statements (#96)
- Ignore dead branches (#93)
- Fix
ignoreGlobal
option (#86)
- Better interop and smaller output (#92)
- Deconflict export and local module (rollup/rollup#554)
- Use named exports as a function when no default export is defined (#524)
- Replace
typeof require
with'function'
(#38) - Don't attempt to resolve entry file relative to importer (#63)
- Handle multiple references to
global
- Return a
name
- Make
transform
stateless (#71) - Support web worker
global
(#50) - Ignore global with
options.ignoreGlobal
(#48)
- Prevent false positives with
namedExports
(#36)
- Rewrite top-level
this
expressions to mean the same asglobal
(#31)
- Optimised module wrappers (#20)
- Allow control over named exports via
options.namedExports
(#18) - Handle bare imports correctly (#23)
- Blacklist all reserved words as export names (#21)
- Configure allowed file extensions via
options.extensions
(#27)
- Support for transpiled modules –
exports.default
is used as the default export in place ofmodule.exports
, if applicable, and__esModule
is not exported (#16)
- Generate sourcemaps by default
- Handle references to
global
(#6)
- Generate named exports where possible (#5)
- Handle shadowed
require
/module
/exports
- Handle dots in filenames (#3)
- Wrap modules in IIFE for more readable output
- Stable release, now that Rollup supports plugins
- Allow mixed CommonJS/ES6 imports/exports
- Use
var
instead oflet
- Sourcemap support
- Support
options.include
andoptions.exclude
- Bail early if module is obviously not a CommonJS module
Add dist files to package (whoops!)
- First release