Socket
Socket
Sign inDemoInstall

svelte

Package Overview
Dependencies
Maintainers
3
Versions
738
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte - npm Package Compare versions

Comparing version 1.29.3 to 1.30.0

5

CHANGELOG.md
# Svelte changelog
## 1.30.0
* Update all component bindings simultaneously ([#760](https://github.com/sveltejs/svelte/issues/760))
* Fix `@keyframes` atrules with `from` and `to` selectors ([#774](https://github.com/sveltejs/svelte/issues/774))
## 1.29.3

@@ -4,0 +9,0 @@

4

package.json
{
"name": "svelte",
"version": "1.29.3",
"version": "1.30.0",
"description": "The magical disappearing UI framework",

@@ -22,3 +22,3 @@ "main": "compiler/svelte.js",

"pretest": "npm run build",
"prepublishOnly": "npm run build && npm run lint",
"prepublishOnly": "npm run lint && npm test",
"prettier": "prettier --use-tabs --single-quote --trailing-comma es5 --write \"src/**/*.ts\""

@@ -25,0 +25,0 @@ },

@@ -322,3 +322,3 @@ function noop() {}

function destroy(detach) {
this.destroy = this.set = noop;
this.destroy = this.set = this.get = noop;
this.fire('destroy');

@@ -328,5 +328,3 @@

this._fragment.destroy();
this._fragment = null;
this._state = {};
this._fragment = this._state = null;
}

@@ -462,2 +460,3 @@

this._recompute(changed, this._state, oldState, false);
if (this._bind) this._bind(changed, this._state);
dispatchObservers(this, this._observers.pre, changed, this._state, oldState);

@@ -464,0 +463,0 @@ this._fragment.update(changed, this._state);

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc