Skip to content

Releases: antonk52/cssmodules-language-server

v1.5.2 Support classes inside at-rules

08 Nov 21:42

Choose a tag to compare

Adds support to classes defined inside at-rules such as container, document, layer, media, scope, starting-style, and supports.

v1.5.1 Windows bug fix

08 Dec 00:32

Choose a tag to compare

This is mostly a maintenance release. It fixes an issue with loading postcss configuration file on Windows OS.

Support for "extends" tsconfig and jsconfig files

02 Dec 09:44

Choose a tag to compare

Cssmodules-language-server now can resolve "extends" field in tsconfig and jsconfig files.

Thanks to a new contributor @domharries

v1.4.1 Better Windows support & correct completion kind

04 Sep 21:40

Choose a tag to compare

This release includes:

  • A fix for windows os where if your editor was setup to mimic unix End Of Line characters that would result in no completion or go to definition functionality. Contributed by @Daydreamer-riri
  • Completion items are now correctly marked as Field instead of Text. Contributed by @Daydreamer-riri

Improved dashes support and new completion triggers

21 May 21:27

Choose a tag to compare

You can now trigger completions using ', ", and [.

Classnames with dashes no longer cause issues when used in completion.

Includes #25 and #26

Thanks to @moliva

v1.3.2 Support for json5 in tsconfigs

02 Apr 19:49

Choose a tag to compare

  • support for json5 in tsconfigs by @dhleong
  • dev tools updates and migrations
    • eslint to biome
    • jest to vitest
    • update dependencies

v1.3.1 Fix for window

11 Nov 21:17

Choose a tag to compare

@Pineappletooth fix a long standing #14 that stopped this package from running on Windows platforms. Thanks!

v1.3.0 Support for reolving files with `baseUrl` and no `paths` by @quentin-fox

02 Aug 21:06

Choose a tag to compare

As of TypeScript 4.1, baseUrl is no longer required to be set when using paths.

source

Which means that you can set a baseUrl in your tsconfig.json which allows you import modules with project wide absolute file paths.

Thanks to @quentin-fox for the work!

v1.2.1 Add missing file

27 Jan 19:34

Choose a tag to compare

v1.2.0 tsconfig alias support

23 Jan 21:07

Choose a tag to compare

This release introduces a basic support to aliases from tsconfig and jsconfig files. Thanks for reporting @igor-ribeiro