Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Oct 16:34
· 64 commits to main since this release

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]