Skip to content

Commit

Permalink
added glob support
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmel committed Dec 28, 2023
1 parent 25445cc commit 9d5933f
Show file tree
Hide file tree
Showing 6 changed files with 168 additions and 416 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

All notable changes to the extension will be documented in this file.

## [1.14.0] - 2023-12-
## [1.14.0] - 2023-12-28

- Initial support for lit css
- Added glob support for local files.
- Initial support for lit css.
- Match on patterns with a colon in addition to equals.
- Ported to rollup.
- Ported to rollup & fast-glob.
- Updated dependencies.

## [1.13.1] - 2022-07-31
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,16 @@ If it is not possible to specify local or remote styles in HTML or via template

All relative paths will be evaluated relative to the file being edited. `${fileBasenameNoExtension}` will be replaced with the file name of the file being edited without extension.

Absolute paths can include glob patterns:

```json
{
"css.styleSheets": ["/dist/*.css"]
}
```

Note that absolute paths are still relative to the workspace folder.

## Supported Languages

Supported languages can be configured with the `css.enabledLanguages` setting. By default `html` is enabled:
Expand Down
Loading

0 comments on commit 9d5933f

Please sign in to comment.