Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sveld

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sveld - npm Package Compare versions

Comparing version 0.8.2 to 0.8.3

4

CHANGELOG.md

@@ -8,2 +8,6 @@ # Changelog

## [0.8.3](https://github.com/IBM/sveld/releases/tag/v0.8.3) - 2021-07-29
- replace backslashes with slashes on Windows when reading Svelte files using the glob method
## [0.8.2](https://github.com/IBM/sveld/releases/tag/v0.8.2) - 2021-07-11

@@ -10,0 +14,0 @@

@@ -105,2 +105,5 @@ "use strict";

var source = "./" + path.relative(dir, file);
if (path.sep !== "/") {
source = source.split(path.sep).join("/");
}
if (exports[moduleName]) {

@@ -107,0 +110,0 @@ exports[moduleName].source = source;

7

package.json
{
"name": "sveld",
"version": "0.8.2",
"version": "0.8.3",
"license": "Apache-2.0",

@@ -67,3 +67,6 @@ "description": "Generate TypeScript definitions for your Svelte components.",

"printWidth": 120
}
},
"contributors": [
"Eric Liu (https://github.com/metonym)"
]
}
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