pull/1347/head v1.63.1
Rich Harris 7 years ago
parent 4d40c1184e
commit 424bb1a5de

@ -1,5 +1,9 @@
# Svelte changelog # Svelte changelog
## 1.63.1
* Allow `observe` method to be overwritten
## 1.63.0 ## 1.63.0
* Add `onstate` and `onupdate` lifecycle hooks and deprecate `component.observe` ([#1197](https://github.com/sveltejs/svelte/issues/1197)) * Add `onstate` and `onupdate` lifecycle hooks and deprecate `component.observe` ([#1197](https://github.com/sveltejs/svelte/issues/1197))

@ -1,6 +1,6 @@
{ {
"name": "svelte", "name": "svelte",
"version": "1.63.0", "version": "1.63.1",
"description": "The magical disappearing UI framework", "description": "The magical disappearing UI framework",
"main": "compiler/svelte.js", "main": "compiler/svelte.js",
"files": [ "files": [

@ -3,7 +3,6 @@ import {
blankObject, blankObject,
_differs, _differs,
_differsImmutable, _differsImmutable,
dispatchObservers,
get, get,
observe, observe,
on, on,

Loading…
Cancel
Save