Comparing version 0.8.2 to 0.8.3
@@ -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; |
{ | ||
"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)" | ||
] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
108315
1798