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 4.2.7 to 4.2.8

2

package.json
{
"name": "svelte",
"version": "4.2.7",
"version": "4.2.8",
"description": "Cybernetically enhanced web apps",

@@ -5,0 +5,0 @@ "type": "module",

@@ -273,2 +273,9 @@ import {

}
// Port over props that were set programmatically before ce was initialized
for (const key in this.$$p_d) {
if (!(key in this.$$d) && this[key] !== undefined) {
this.$$d[key] = this[key]; // don't transform, these were set through JavaScript
delete this[key]; // remove the property that shadows the getter/setter
}
}
this.$$c = new this.$$ctor({

@@ -275,0 +282,0 @@ target: this.shadowRoot || this,

@@ -9,3 +9,3 @@ // generated during release, do not modify

*/
export const VERSION = '4.2.7';
export const VERSION = '4.2.8';
export const PUBLIC_VERSION = '4';

Sorry, the diff of this file is not supported yet

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