@html-next/vertical-collection 4.0.0-beta.0 → 4.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/RELEASE.md +14 -0
- package/addon/-private/data-view/radar/radar.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/RELEASE.md
CHANGED
|
@@ -58,3 +58,17 @@ release process. It will prompt you to to choose the version number after which
|
|
|
58
58
|
you will have the chance to hand tweak the changelog to be used (for the
|
|
59
59
|
`CHANGELOG.md` and GitHub release), then `release-it` continues on to tagging,
|
|
60
60
|
pushing the tag and commits, etc.
|
|
61
|
+
|
|
62
|
+
To start a prerelease branch for a new major use:
|
|
63
|
+
|
|
64
|
+
```sh
|
|
65
|
+
npx release-it major --preRelease=beta
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
On subsequent prerelease run:
|
|
69
|
+
|
|
70
|
+
```sh
|
|
71
|
+
npx release-it --preRelease
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
For more guidance see https://github.com/release-it/release-it/blob/master/docs/pre-releases.md
|
|
@@ -539,6 +539,9 @@ export default class Radar {
|
|
|
539
539
|
if (item) {
|
|
540
540
|
insertRangeBefore(this._domPool, null, component.realUpperBound, component.realLowerBound);
|
|
541
541
|
} else {
|
|
542
|
+
// Insert the virtual component bound back to make sure Glimmer is
|
|
543
|
+
// not confused about the state of the DOM.
|
|
544
|
+
insertRangeBefore(this._itemContainer, null, component.realUpperBound, component.realLowerBound);
|
|
542
545
|
run(() => {
|
|
543
546
|
virtualComponents.removeObject(component);
|
|
544
547
|
});
|