rollup-plugin-svelte
Advanced tools
Comparing version 1.8.0 to 1.8.1
# rollup-plugin-svelte changelog | ||
## 1.8.1 | ||
* Handle components without `<style>` tags when concatenating CSS | ||
## 1.8.0 | ||
@@ -4,0 +8,0 @@ |
@@ -90,3 +90,3 @@ 'use strict'; | ||
for ( let chunk of cssLookup.values() ) { | ||
result += chunk; | ||
result += chunk || ''; | ||
} | ||
@@ -93,0 +93,0 @@ |
@@ -88,3 +88,3 @@ import { basename, extname } from 'path'; | ||
for ( let chunk of cssLookup.values() ) { | ||
result += chunk; | ||
result += chunk || ''; | ||
} | ||
@@ -91,0 +91,0 @@ |
{ | ||
"name": "rollup-plugin-svelte", | ||
"version": "1.8.0", | ||
"version": "1.8.1", | ||
"description": "Compile Svelte components with Rollup", | ||
@@ -5,0 +5,0 @@ "main": "dist/rollup-plugin-svelte.cjs.js", |
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
9395