update 3.0.0 changelog

This commit is contained in:
Sebastian McKenzie
2015-01-23 09:39:47 +11:00
parent bff150f69d
commit c7e4213641

View File

@@ -36,10 +36,13 @@ _Note: Gaps between patch versions are faulty/broken releases._
* Bare `super();` only works inside of constructors.
* Removed the optional runtime in favor of the `selfContained` transformer.
* This shorthand has been removed from the playground.
* `--indent` option has been removed from the CLI.
* `6to5/polyfill` can now only be required **once**.
* **CLI**
* `--indent` option has been removed.
* `--amd-modules-id` option has been removed, use `--module-ids` instead.
* **Options**
* Remove `includeRegenerator` option.
* `amdModuleIds` option has been removed, use `moduleIds` instead.
* `includeRegenerator` has been removed.
* `ignoreRegex` fallback has now been dropped from the require hook. `register(/foo/);`, `register({ ignoreRegex: /foo/ })` -> `register({ ignore: /foo/ })`.
* **Modules**
* Imports and exports are now illegal anywhere except the root level by default. Set `modules` to [loose mode](http://6to5.org/docs/usage/loose) to allow them everywhere.