Initial release
This is the first major release of can-observable-array, a package for creating arrays that react to changes. It is the list counterpart to can-observable-object.
import { ObservableArray } from "can";
import Person from "./person";
class PeopleList extends ObservableArray {
static items = Person;
}