Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui-dev: bump the webpack group in /server/src/main/webapp/WEB-INF/rails with 15 updates #1892

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 17, 2024

Bumps the webpack group in /server/src/main/webapp/WEB-INF/rails with 15 updates:

Package From To
babel-loader 8.3.0 9.1.3
css-loader 5.2.7 7.1.1
eslint-webpack-plugin 2.7.0 4.1.0
fork-ts-checker-webpack-plugin 6.5.3 9.0.2
html-webpack-plugin 4.5.2 5.6.0
mini-css-extract-plugin 1.6.2 2.9.0
@types/mini-css-extract-plugin 1.4.3 2.5.1
sass-loader 10.5.2 14.2.1
style-loader 2.0.0 4.0.0
stylelint-webpack-plugin 2.5.0 5.0.0
thread-loader 3.0.4 4.0.2
ts-loader 8.4.0 9.5.1
webpack 4.47.0 5.91.0
@types/webpack 4.41.38 5.28.5
webpack-cli 4.10.0 5.1.4

Updates babel-loader from 8.3.0 to 9.1.3

Release notes

Sourced from babel-loader's releases.

v9.1.3

Security dependency updates

New Contributors

Full Changelog: babel/babel-loader@v9.1.2...v9.1.3

v9.1.2

9.1.1 was a broken release, it didn't include all the commits.

Dependencies updates

Misc

New Contributors

Full Changelog: babel/babel-loader@v9.1.0...v9.1.2

v9.1.0

New features

Full Changelog: babel/babel-loader@v9.0.1...v9.1.0

v9.0.1

Bug Fixes

Full Changelog: babel/babel-loader@v9.0.0...v9.0.1

v9.0.0

What's Changed

New Contributors

... (truncated)

Commits

Updates css-loader from 5.2.7 to 7.1.1

Release notes

Sourced from css-loader's releases.

v7.1.1

7.1.1 (2024-04-10)

Bug Fixes

  • automatically rename class default to _default when named export is enabled (#1590) (d6c31a1)

v7.1.0

7.1.0 (2024-04-08)

Features

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

v7.0.0

7.0.0 (2024-04-04)

⚠ 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);

  • 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)

... (truncated)

Changelog

Sourced from css-loader's changelog.

7.1.1 (2024-04-10)

Bug Fixes

  • automatically rename class default to _default when named export is enabled (#1590) (d6c31a1)

7.1.0 (2024-04-08)

Features

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

7.0.0 (2024-04-04)

⚠ 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: {
</tr></table> 

... (truncated)

Commits
  • 5c717c9 chore(release): 7.1.1
  • d6c31a1 fix: automatically rename class default to _default when named export is ...
  • b162e25 chore(release): 7.1.0
  • 15f793d docs: update logic (#1587)
  • 9c165a4 docs: update migration guide (#1586)
  • af834b4 feat: added the getJSON option to output CSS modules mapping (#1577)
  • fd18587 chore: husky migration (#1584)
  • 96e6ff4 chore(release): 7.0.0
  • a2231ae test: update
  • f96a110 feat: namedExports works fine with any exportLocalsConvention value
  • Additional commits viewable in compare view

Updates eslint-webpack-plugin from 2.7.0 to 4.1.0

Release notes

Sourced from eslint-webpack-plugin's releases.

v4.1.0

4.1.0 (2024-03-14)

Features

v4.0.1

4.0.1 (2023-04-10)

Performance

  • enable cache by default (#213)

v4.0.0

4.0.0 (2023-02-03)

⚠ BREAKING CHANGES

  • drop node v12 and eslint v7 (#159)

Bug Fixes

  • lint modules that are cached with webpack's filesystem cache (#197) (92f25ec), closes #130

  • drop node v12 and eslint v7 (#159) (1edd3c1)

v3.2.0

3.2.0 (2022-06-23)

Features

v3.1.1

3.1.1 (2021-11-11)

Bug Fixes

v3.1.0

... (truncated)

Changelog

Sourced from eslint-webpack-plugin's changelog.

4.1.0 (2024-03-14)

Features

4.0.1 (2023-04-10)

Performance

  • enable cache by default (#213)

4.0.0 (2023-02-03)

⚠ BREAKING CHANGES

  • drop node v12 and eslint v7 (#159)

Bug Fixes

  • lint modules that are cached with webpack's filesystem cache (#197) (92f25ec), closes #130

  • drop node v12 and eslint v7 (#159) (1edd3c1)

3.2.0 (2022-06-23)

Features

3.1.1 (2021-11-11)

Bug Fixes

3.1.0 (2021-10-27)

Features

... (truncated)

Commits

Updates fork-ts-checker-webpack-plugin from 6.5.3 to 9.0.2

Release notes

Sourced from fork-ts-checker-webpack-plugin's releases.

v9.0.2

9.0.2 (2023-10-29)

Bug Fixes

  • issue-webpack-error should not add colors to file string (#825) (d5e7e32)

v9.0.1

9.0.1 (2023-10-29)

Bug Fixes

v9.0.0

9.0.0 (2023-10-04)

chore

BREAKING CHANGES

  • node: Drop support for Node.js v12

Signed-off-by: Lucian Buzzo [email protected]

v8.0.0

8.0.0 (2023-03-05)

Bug Fixes

Features

BREAKING CHANGES

  • 🧨 Drop support for Vue.js

v7.3.0

... (truncated)

Commits
  • 26a81ed chore(package): update cosmiconfig (#818)
  • d49389e chore(deps): bump @​babel/traverse from 7.4.4 to 7.23.2 (#828)
  • d5e7e32 fix: issue-webpack-error should not add colors to file string (#825)
  • c999a13 chore(deps): bump actions/checkout from 3 to 4 (#822)
  • 45a3c28 chore(deps): bump word-wrap from 1.2.3 to 1.2.4 (#820)
  • 510bde4 chore: import webpack using "* as webpack" syntax (#780)
  • d461689 fix: compiler crashes are not handled (#806)
  • d3b462e chore(node): drop support for node v12 (#823)
  • 73f6729 chore(deps): bump semver from 7.3.5 to 7.5.2 (#819)
  • 5afee9f chore(deps-dev): bump webpack from 5.67.0 to 5.76.0 (#805)
  • Additional commits viewable in compare view

Updates html-webpack-plugin from 4.5.2 to 5.6.0

Changelog

Sourced from html-webpack-plugin's changelog.

5.6.0 (2023-12-19)

Features

  • add @rspack/core as an optional peer dependency (#1829) (56ff3ae)
  • Added support type=systemjs-module via the scriptLoading option (#1822) (7effc30)

Bug Fixes

5.5.4 (2023-12-06)

Bug Fixes

5.5.3 (2023-06-10)

Bug Fixes

5.5.2 (2023-06-08)

Bug Fixes

5.5.1 (2023-04-15)

Bug Fixes

  • perf: defer loading of pretty-error to improve startup time (#1789) (988709d)

5.5.0 (2021-10-25)

Features

... (truncated)

Commits
  • ebfa1ce chore(release): 5.6.0
  • 56ff3ae feat: add @rspack/core as an optional peer dependency (#1829)
  • c79f2cf fix: memoy leak (#1836)
  • 7effc30 feat: Added support type=systemjs-module via the scriptLoading option (#1...
  • 318cd4d docs: add html-webpack-inject-attributes-plugin to readme (#1787)
  • 91ba8bb chore(release): 5.5.4
  • fe231d3 docs: add js-entry-webpack-plugin (#1732)
  • 5c15284 test: case for watch/serve and reemitting assets (#1812)
  • a214736 fix: reemit assets from loaders (#1811)
  • 0db3c2b refactor: fix regression after refactor and testing (#1810)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for html-webpack-plugin since your current version.


Updates mini-css-extract-plugin from 1.6.2 to 2.9.0

Release notes

Sourced from mini-css-extract-plugin's releases.

v2.9.0

2.9.0 (2024-04-16)

Features

  • add support for link preload/prefetch (#1043) (ee25e51)
  • added the defaultExport option to generate default and named export together (#1084) (74ae781)

Bug Fixes

v2.8.1

2.8.1 (2024-02-27)

Bug Fixes

  • add nonce if __webpack_nonce__ has been defined (c7f0aee)

v2.8.0

2.8.0 (2024-02-01)

Features

  • added the beforeTagInsert hook (#1054) (6313bf6)
  • support named exports with any characters (b656c5c)

v2.7.7

2.7.7 (2024-01-10)

Bug Fixes

v2.7.6

2.7.6 (2023-05-19)

Bug Fixes

... (truncated)

Changelog

Sourced from mini-css-extract-plugin's changelog.

2.9.0 (2024-04-16)

Features

  • add support for link preload/prefetch (#1043) (ee25e51)
  • added the defaultExport option to generate default and named export together (#1084) (74ae781)

Bug Fixes

2.8.1 (2024-02-27)

Bug Fixes

  • add nonce if __webpack_nonce__ has been defined (c7f0aee)

2.8.0 (2024-02-01)

Features

  • added the beforeTagInsert hook (#1054) (6313bf6)
  • support named exports with any characters (b656c5c)

2.7.7 (2024-01-10)

Bug Fixes

2.7.6 (2023-05-19)

Bug Fixes

2.7.5 (2023-03-16)

Bug Fixes

... (truncated)

Commits
  • 7cc2789 chore(release): 2.9.0
  • 29f0b91 test: fix (#1096)
  • ee25e51 feat: add support for link preload/prefetch (#1043)
  • 1a56673 fix: avoid reloading all csses when hot load (#1090)
  • e73061d chore: update dependencies to the latest version (#1095)
  • 74ae781 fix: added the defaultExport option to generate default and named export to...
  • 92c7eb3 chore(deps-dev): bump express from 4.18.2 to 4.19.2 (#1093)
  • 51065cc chore(deps-dev): bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#1091)
  • 8bf0ad6 chore(deps-dev): bump follow-redirects from 1.15.5 to 1.15.6 (#1088)
  • 717acf1 chore: upgrade dependencies to latest version (#1086)
  • Additional commits viewable in compare view

Updates @types/mini-css-extract-plugin from 1.4.3 to 2.5.1

Commits

Updates sass-loader from 10.5.2 to 14.2.1

Release notes

Sourced from sass-loader's releases.

v14.2.1

14.2.1 (2024-04-16)

Bug Fixes

v14.2.0

14.2.0 (2024-04-11)

Features

  • added the modern-compiler value for API to reuse compiler process (#1195) (cef40a8)
  • support webpack built-in resolver for modern and modern-compiler API (#1197) (2265b72)

Notes:

Using the modern-compiler value for the api option together with sass-embedded reduces compilation time by 5-10 times, especially for projects using large files with a lot of @import/@use, for small files the build time reduction will not be significant.

v14.1.1

14.1.1 (2024-02-19)

Bug Fixes

v14.1.0

14.1.0 (2024-01-30)

Features

  • add @rspack/core as an optional peer dependency (#1184) (637ba5b)

v14.0.0

14.0.0 (2024-01-15)

⚠ BREAKING CHANGES

  • removed fibers support
  • minimum supported Node.js version is 18.12.0 (627f55d)

v13.3.3

13.3.3 (2023-12-25)

... (truncated)

Changelog

Sourced from sass-loader's changelog.

14.2.1 (2024-04-16)

Bug Fixes

14.2.0 (2024-04-11)

Features

  • added the modern-compiler value for API to reuse compiler process (#1195) (cef40a8)
  • support webpack built-in resolver for modern and modern-compiler API (#1197) (2265b72)

Notes:

Using the modern-compiler value for the api option together with sass-embedded reduces compilation time by 5-10 times, especially for projects using large files with a lot of @import/@use, for small files the build time reduction will not be significant.

14.1.1 (2024-02-19)

Bug Fixes

14.1.0 (2024-01-30)

Features

  • add @rspack/core as an optional peer dependency (#1184) (637ba5b)

14.0.0 (2024-01-15)

⚠ BREAKING CHANGES

  • removed fibers support
  • minimum supported Node.js version is 18.12.0 (627f55d)

13.3.3 (2023-12-25)

Bug Fixes

13.3.2 (2023-06-09)

... (truncated)

Commits
  • dfcd3cc chore(release): 14.2.1
  • 77051d8 fix: avoid multiple sass compiler creation (#1199)
  • 4edc139 chore(release): 14.2.0
  • 2265b72 feat: support webpack built-in resolver for modern and modern-compiler AP...
  • a975db2 fix: use watchClose hook (#1196)
  • cef40a8 feat: added the modern-compiler value for API to reuse compiler process (#1...
  • 13f0dc8 chore: upgrade dependencies to latest version (#1194)
  • 5d2cd80 chore: update codecov-action to v4 (#1193)
  • 31789cc ci: fix commitlint check (#1192)
  • 53603fc chore(release): 14.1.1
  • Additional commits viewable in compare view

Updates style-loader from 2.0.0 to 4.0.0

Release notes

Sourced from style-loader's releases.

v4.0.0

4.0.0 (2024-04-08)

⚠ BREAKING CHANGES

  • minimum supported webpack version is 5.27.0
  • minimum support Node.js version is 18.12.0
  • the insert option can only be a selector or the path to the module

Migration:

Before:

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/i,
        use: [
          {
            loader: "style-loader",
            options: {
              injectType: "styleTag",
              styleTagTransform: function (css, style) {
                // Do something ...
                style.innerHTML = `${css}.modify{}\n`;
            document.head.appendChild(style);
          },
        },
      },
      &quot;css-loader&quot;,
    ],
  },
],

},
};

After:

insert-function.js

function insert(css, style) {
  var parent = options.target || document.head;
</tr></table> 

... (truncated)

Changelog

Sourced from style-loader's changelog.

4.0.0 (2024-04-08)

⚠ BREAKING CHANGES

  • minimum supported webpack version is 5.27.0
  • minimum support Node.js version is 18.12.0
  • the insert option can only be a selector or the path to the module

Migration:

Before:

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/i,
        use: [
          {
            loader: "style-loader",
            options: {
              injectType: "styleTag",
              styleTagTransform: function (css, style) {
                // Do something ...
                style.innerHTML = `${css}.modify{}\n`;
            document.head.appendChild(style);
          },
        },
      },
      &quot;css-loader&quot;,
    ],
  },
],

},
};

After:

insert-function.js

function insert(css, style) {
  var parent = options.target || document.head;
</tr></table>

... (truncated)

Commits
  • 091d37d chore(release): 4.0.0
  • abc0b5f docs: improve more
  • 565362c docs: update
  • 7122cde refactor!: the insert option can only be a selector or the path to the mo...
  • 11b8639 refactor!: the styleTagTransform option can only be the path to the module
  • 7ec1120 test: fix
  • 977bb71 refactor!: minimum supported webpack version is 5.27.0
  • a70555a test: update
  • dc6e368 refactor!: minimum support Node.js version is 18.12.0
  • b7cdc6c chore: update codecov-action to v4 (#623)
  • Additional commits viewable in

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 17, 2024
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/server/src/main/webapp/WEB-INF/rails/webpack-706ae3f376 branch 3 times, most recently from 53a0a05 to dd77ce4 Compare April 25, 2024 07:48
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/server/src/main/webapp/WEB-INF/rails/webpack-706ae3f376 branch 3 times, most recently from 9fa9408 to 122e9c2 Compare May 2, 2024 05:21
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/server/src/main/webapp/WEB-INF/rails/webpack-706ae3f376 branch 6 times, most recently from 0f80ff4 to dad23e3 Compare May 10, 2024 03:09
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/server/src/main/webapp/WEB-INF/rails/webpack-706ae3f376 branch 3 times, most recently from acd06b1 to 83d3d44 Compare May 15, 2024 12:00
Bumps the webpack group in /server/src/main/webapp/WEB-INF/rails with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [babel-loader](https://github.com/babel/babel-loader) | `8.3.0` | `9.1.3` |
| [css-loader](https://github.com/webpack-contrib/css-loader) | `5.2.7` | `7.1.1` |
| [eslint-webpack-plugin](https://github.com/webpack-contrib/eslint-webpack-plugin) | `2.7.0` | `4.1.0` |
| [fork-ts-checker-webpack-plugin](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin) | `6.5.3` | `9.0.2` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `4.5.2` | `5.6.0` |
| [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) | `1.6.2` | `2.9.0` |
| [@types/mini-css-extract-plugin](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mini-css-extract-plugin) | `1.4.3` | `2.5.1` |
| [sass-loader](https://github.com/webpack-contrib/sass-loader) | `10.5.2` | `14.2.1` |
| [style-loader](https://github.com/webpack-contrib/style-loader) | `2.0.0` | `4.0.0` |
| [stylelint-webpack-plugin](https://github.com/webpack-contrib/stylelint-webpack-plugin) | `2.5.0` | `5.0.0` |
| [thread-loader](https://github.com/webpack-contrib/thread-loader) | `3.0.4` | `4.0.2` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `8.4.0` | `9.5.1` |
| [webpack](https://github.com/webpack/webpack) | `4.47.0` | `5.91.0` |
| [@types/webpack](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/webpack) | `4.41.38` | `5.28.5` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `4.10.0` | `5.1.4` |


Updates `babel-loader` from 8.3.0 to 9.1.3
- [Release notes](https://github.com/babel/babel-loader/releases)
- [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md)
- [Commits](babel/babel-loader@v8.3.0...v9.1.3)

Updates `css-loader` from 5.2.7 to 7.1.1
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/css-loader@v5.2.7...v7.1.1)

Updates `eslint-webpack-plugin` from 2.7.0 to 4.1.0
- [Release notes](https://github.com/webpack-contrib/eslint-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/eslint-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/eslint-webpack-plugin@v2.7.0...v4.1.0)

Updates `fork-ts-checker-webpack-plugin` from 6.5.3 to 9.0.2
- [Release notes](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/releases)
- [Changelog](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/fork-ts-checker-webpack-plugin@v6.5.3...v9.0.2)

Updates `html-webpack-plugin` from 4.5.2 to 5.6.0
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v4.5.2...v5.6.0)

Updates `mini-css-extract-plugin` from 1.6.2 to 2.9.0
- [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/mini-css-extract-plugin@v1.6.2...v2.9.0)

Updates `@types/mini-css-extract-plugin` from 1.4.3 to 2.5.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mini-css-extract-plugin)

Updates `sass-loader` from 10.5.2 to 14.2.1
- [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
- [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/sass-loader@v10.5.2...v14.2.1)

Updates `style-loader` from 2.0.0 to 4.0.0
- [Release notes](https://github.com/webpack-contrib/style-loader/releases)
- [Changelog](https://github.com/webpack-contrib/style-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/style-loader@v2.0.0...v4.0.0)

Updates `stylelint-webpack-plugin` from 2.5.0 to 5.0.0
- [Release notes](https://github.com/webpack-contrib/stylelint-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/stylelint-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/stylelint-webpack-plugin@v2.5.0...v5.0.0)

Updates `thread-loader` from 3.0.4 to 4.0.2
- [Release notes](https://github.com/webpack-contrib/thread-loader/releases)
- [Changelog](https://github.com/webpack-contrib/thread-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/thread-loader@v3.0.4...v4.0.2)

Updates `ts-loader` from 8.4.0 to 9.5.1
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v8.4.0...v9.5.1)

Updates `webpack` from 4.47.0 to 5.91.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v4.47.0...v5.91.0)

Updates `@types/webpack` from 4.41.38 to 5.28.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/webpack)

Updates `webpack-cli` from 4.10.0 to 5.1.4
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/[email protected]@5.1.4)

---
updated-dependencies:
- dependency-name: babel-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: css-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: eslint-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: fork-ts-checker-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: html-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: mini-css-extract-plugin
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: "@types/mini-css-extract-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: sass-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: style-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: stylelint-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: thread-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: ts-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: "@types/webpack"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
- dependency-name: webpack-cli
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/server/src/main/webapp/WEB-INF/rails/webpack-706ae3f376 branch from 83d3d44 to 7cfebaf Compare May 17, 2024 09:39
Copy link
Author

dependabot bot commented on behalf of github May 24, 2024

Superseded by #1942.

@dependabot dependabot bot closed this May 24, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/server/src/main/webapp/WEB-INF/rails/webpack-706ae3f376 branch May 24, 2024 16:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants