From a928c49c0a7cdef0bd219f5d57ea129b33c8b7b3 Mon Sep 17 00:00:00 2001 From: Benny Powers Date: Sat, 28 Oct 2023 21:28:59 +0300 Subject: [PATCH] docs: fix README --- packages/typescript-transform-lit-css/README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/packages/typescript-transform-lit-css/README.md b/packages/typescript-transform-lit-css/README.md index a97e43a..6e73785 100644 --- a/packages/typescript-transform-lit-css/README.md +++ b/packages/typescript-transform-lit-css/README.md @@ -24,13 +24,12 @@ In the mean time, enjoy importing your CSS into your component files. ## Options -| Name | Accepts | Default | -| ----------- | -------------------------------------------------------------------------------------- | ----------- | -| `filter` | RegExp of file names to apply to | `/\.css$/i` | -| `uglify` | Boolean or Object of [uglifycss](https://www.npmjs.com/package/uglifycss#api) options. | `false` | -| `specifier` | Package to import `css` from | `lit` | -| `tag` | Name of the template-tag function | `css` | -| `transform` | Optional function (sync or async) which transforms css sources (e.g. postcss) | `x => x` | +| Name | Accepts | Default | +| ----------- | ------------------------------------------------------------------ | ------- | +| `uglify` | Boolean, whether to minify css. | `false` | +| `inline` | Boolean, whether to inline css imports into the typescript source. | `false` | +| `specifier` | Package to import `css` from | `lit` | +| `tag` | Name of the template-tag function | `css` | ## Usage