Skip to content

Releases: bennypowers/lit-css

[email protected]

21 Oct 06:51
Compare
Choose a tag to compare

Patch Changes

[email protected]

21 Oct 07:00
Compare
Choose a tag to compare

Patch Changes

[email protected]

21 Oct 06:51
Compare
Choose a tag to compare

Patch Changes

@pwrs/[email protected]

21 Oct 06:42
Compare
Choose a tag to compare

Patch Changes

  • d4ff2ca: Fixed the transform function signature's types.

[email protected]

17 Oct 16:34
Compare
Choose a tag to compare

Minor Changes

  • 2b27339: Add a second parameter to the transform function which contains a filePath property, for use in error reporting, sourcemaps, etc.

Patch Changes

[email protected]

17 Oct 16:34
Compare
Choose a tag to compare

Minor Changes

  • 2b27339: Add a second parameter to the transform function which contains a filePath property, for use in error reporting, sourcemaps, etc.

Patch Changes

  • 2b27339: Fix lit-css-loader options which previously had to be wrapped in an object under options.options

    Before

    module: {
      rules: [{
        test: /\.css$/,
        loader: 'lit-css-loader',
        options: {
          options: {
            uglify: true,
          },
        },
      }],
    },

    After

    module: {
      rules: [{
        test: /\.css$/,
        loader: 'lit-css-loader',
        options: {
          uglify: true,
        },
      }],
    },
  • Updated dependencies [2b27339]

[email protected]

17 Oct 16:34
Compare
Choose a tag to compare

Minor Changes

  • 2b27339: Add a second parameter to the transform function which contains a filePath property, for use in error reporting, sourcemaps, etc.

Patch Changes

@pwrs/[email protected]

17 Oct 16:34
Compare
Choose a tag to compare

Minor Changes

  • 2b27339: Add a second parameter to the transform function which contains a filePath property, for use in error reporting, sourcemaps, etc.

[email protected]

14 Oct 13:22
Compare
Choose a tag to compare

Minor Changes

  • 1242fc1: Add support for transforms like Sass or PostCSS.

    See individual packages READMEs for examples.
    TL;DR: Pass a function to plugin options which takes source text and outputs CSS text.

Patch Changes

[email protected]

14 Oct 13:22
Compare
Choose a tag to compare

Minor Changes

  • 1242fc1: Add support for transforms like Sass or PostCSS.

    See individual packages READMEs for examples.
    TL;DR: Pass a function to plugin options which takes source text and outputs CSS text.

Patch Changes