From b34b3c35243e350a1dbd9d9ed079a91de9bb2e32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Tom=C5=A1=C3=ADk?= Date: Sun, 5 Jan 2020 20:29:41 +0400 Subject: [PATCH] Exclude archive of previous docs (#2561) * remove docs archive (fix #2552) * Update docs/change-log.md Co-Authored-By: Isiah Meadows Co-authored-by: Isiah Meadows --- .npmignore | 3 +++ docs/change-log.md | 1 + 2 files changed, 4 insertions(+) diff --git a/.npmignore b/.npmignore index ab0f8621..9c303059 100644 --- a/.npmignore +++ b/.npmignore @@ -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/ diff --git a/docs/change-log.md b/docs/change-log.md index bf77b242..6b4d8fe5 100644 --- a/docs/change-log.md +++ b/docs/change-log.md @@ -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.