Skip to content

chore(deps): update dependency css-loader to v7#284

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/css-loader-7.x
Open

chore(deps): update dependency css-loader to v7#284
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/css-loader-7.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 17, 2024

This PR contains the following updates:

Package Change Age Confidence
css-loader ^6.8.1^7.0.0 age confidence

Release Notes

webpack/css-loader (css-loader)

v7.1.4

Compare Source

v7.1.3

Compare Source

v7.1.2

Compare Source

v7.1.1

Compare Source

v7.1.0

Compare Source

Features
  • added the getJSON option to output CSS modules mapping (#​1577) (af834b4)

v7.0.0

Compare Source

⚠ BREAKING CHANGES
  • The modules.namedExport option is true by default if you enable the esModule option

Migration guide:

Before:

import style from "./style.css";

console.log(style.myClass);

After:

import * as style from "./style.css";

console.log(style.myClass);

To restore 6.x behavior, please use:

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/i,
        loader: "css-loader",
        options: {
          modules: {
            namedExport: false,
            exportLocalsConvention: 'as-is',
            //
            // or, if you prefer camelcase style
            //
            // exportLocalsConvention: 'camel-case-only'
          },
        },
      },
    ],
  },
};

Typescript migration:

Before:

declare module '*.module.css' {
  const classes: { [key: string]: string };
  export default classes;
}

After:

declare module '*.module.css' {
  const classes: { [key: string]: string };
  export = classes;
}
  • The modules.exportLocalsConvention has the value as-is when the modules.namedExport option is true and you don't specify a value
  • Minimum supported webpack version is 5.27.0
  • Minimum supported Node.js version is 18.12.0
Features
  • The modules.namedExports option works fine with any modules.exportLocalsConvention values (f96a110)
  • Added dashed variants for the modules.exportLocalsConvention options (40e1668)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch 9 times, most recently from 03c1d03 to f102a8c Compare April 22, 2024 01:06
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from 241c992 to 66fd2d5 Compare May 22, 2024 13:20
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from fccea64 to b8552ae Compare June 6, 2024 19:39
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from b8552ae to 62f5fc4 Compare June 30, 2024 05:24
@renovate renovate Bot added the renovate label Jul 24, 2024
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from 62f5fc4 to d02a70e Compare July 25, 2024 01:28
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from 65ad7f9 to 6853e4e Compare December 23, 2024 13:37
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from 6853e4e to 85cf3d3 Compare August 10, 2025 13:57
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from 85cf3d3 to 66fbd1c Compare September 25, 2025 20:46
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from 66fbd1c to 0dd8ea0 Compare October 23, 2025 07:49
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch 4 times, most recently from 3b48e7e to 1412536 Compare November 19, 2025 16:02
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from 1412536 to cff15bc Compare January 27, 2026 17:01
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from 2a46337 to a81c769 Compare February 12, 2026 13:03
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from 7529101 to 365497e Compare February 22, 2026 16:44
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from 365497e to c68b170 Compare March 5, 2026 17:01
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from c68b170 to a386abf Compare April 8, 2026 16:35
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from a386abf to a9b449b Compare April 28, 2026 15:42
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 28, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @nestjs/schematics@11.1.0
npm error Found: prettier@2.8.8
npm error node_modules/prettier
npm error   dev prettier@"2.8.8" from the root project
npm error   prettier@"^2.6.2" from json-schema-to-typescript@11.0.5
npm error   node_modules/json-schema-to-typescript
npm error     dev json-schema-to-typescript@"^11.0.5" from the root project
npm error
npm error Could not resolve dependency:
npm error peerOptional prettier@"^3.0.0" from @nestjs/schematics@11.1.0
npm error node_modules/@nestjs/schematics
npm error   dev @nestjs/schematics@"^11.1.0" from the root project
npm error
npm error Conflicting peer dependency: prettier@3.8.3
npm error node_modules/prettier
npm error   peerOptional prettier@"^3.0.0" from @nestjs/schematics@11.1.0
npm error   node_modules/@nestjs/schematics
npm error     dev @nestjs/schematics@"^11.1.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-06-01T14_32_01_145Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-06-01T14_32_01_145Z-debug-0.log

@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from a9b449b to 30336b7 Compare April 28, 2026 20:09
@renovate renovate Bot force-pushed the renovate/css-loader-7.x branch from 30336b7 to a0a5d03 Compare April 28, 2026 20:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants