pull/775/head v1.29.3
Rich Harris 7 years ago
parent 9ef7dbc021
commit 1dac29c45e

@ -1,5 +1,10 @@
# Svelte changelog
## 1.29.3
* Only recompute tag and attribute values if they could have changed ([#768](https://github.com/sveltejs/svelte/issues/768))
* Fix CSS scoping with multiple levels of descendant selectors ([#767](https://github.com/sveltejs/svelte/issues/767))
## 1.29.2
* Preserve space before non-parenthesized media query expression ([#759](https://github.com/sveltejs/svelte/issues/759))

@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "1.29.2",
"version": "1.29.3",
"description": "The magical disappearing UI framework",
"main": "compiler/svelte.js",
"files": [
@ -58,7 +58,7 @@
"node-resolve": "^1.3.3",
"nyc": "^11.1.0",
"prettier": "^1.4.1",
"rollup": "^0.45.2",
"rollup": "^0.47.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.1.0",

@ -2349,11 +2349,9 @@ rollup-watch@^4.3.1:
require-relative "0.8.7"
rollup-pluginutils "^2.0.1"
rollup@^0.45.2:
version "0.45.2"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.45.2.tgz#63a284c2b31234656f24e9e9717fabb6a7f0fa43"
dependencies:
source-map-support "^0.4.0"
rollup@^0.47.4:
version "0.47.4"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.47.4.tgz#e3a55de83a78221d232ce29619a8d68189ae845e"
run-async@^2.2.0:
version "2.3.0"
@ -2419,7 +2417,7 @@ sntp@1.x.x:
dependencies:
hoek "2.x.x"
source-map-support@^0.4.0, source-map-support@^0.4.8:
source-map-support@^0.4.8:
version "0.4.15"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1"
dependencies:

Loading…
Cancel
Save