vite-plugin-lightningcss
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -1,7 +0,7 @@ | ||
import type { TransformOptions } from "lightningcss"; | ||
import type { CustomAtRules, TransformOptions } from "lightningcss"; | ||
import { type Plugin } from "vite"; | ||
declare type ViteTransformOptions = Omit<TransformOptions, "filename" | "code"> & { | ||
browserslist?: string | readonly string[]; | ||
declare type ViteTransformOptions<C extends CustomAtRules> = Omit<TransformOptions<C>, "filename" | "code"> & { | ||
browserslist?: string | readonly string[]; | ||
}; | ||
declare function lightningcss(opts?: ViteTransformOptions): Plugin[]; | ||
declare function lightningcss<C extends CustomAtRules>(opts?: ViteTransformOptions<C>): Plugin[]; | ||
export default lightningcss; |
{ | ||
"name": "vite-plugin-lightningcss", | ||
"module": "src/index.ts", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"author": "Lawrence Chen <lawrencechen2002@gmail.com>", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
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
5817