Exclude archive of previous docs (#2561)

* remove docs archive (fix #2552)

* Update docs/change-log.md

Co-Authored-By: Isiah Meadows <contact@isiahmeadows.com>

Co-authored-by: Isiah Meadows <contact@isiahmeadows.com>
This commit is contained in:
Kamil Tomšík 2020-01-05 20:29:41 +04:00 committed by Isiah Meadows
parent 4a3a486d80
commit b34b3c3524
2 changed files with 4 additions and 0 deletions

View file

@ -20,3 +20,6 @@ tests/
# from changes to it in patch releases. Let's force people to finally stop using
# them.
/test-utils/
# Exclude archive of previous docs (see #2552)
/archive/

View file

@ -20,6 +20,7 @@
*Note for later: release as semver-minor.*
- Reduced package download size substantially by removing the archive of previous releases' documentation. ([#2561](https://github.com/MithrilJS/mithril.js/pull/2561) [@cztomsik](https://github.com/cztomsik))
- Improved error messages in multiple places. ([#2536](https://github.com/MithrilJS/mithril.js/pull/2536) [@isiahmeadows](https://github.com/isiahmeadows))
- The redraw reentrancy check was moved from `m.mount` to `m.render` and its error message was updated accordingly. ([#2536](https://github.com/MithrilJS/mithril.js/pull/2536) [@isiahmeadows](https://github.com/isiahmeadows))
- This is unlikely to break people because if you were to do it with `m.render` directly before now, you'd corrupt Mithril's internal representation and internal errors could occur as a result. Now, it just warns you.