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

build(deps): bump the npm group across 1 directory with 20 updates #156

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the npm group with 20 updates in the / directory:

Package From To
@types/c3 0.7.8 0.7.11
@types/node 15.14.9 22.5.2
@types/stripe-v3 3.1.29 3.1.33
@types/uikit 3.14.0 3.14.5
css-loader 5.2.7 7.1.2
d3-scale-chromatic 3.0.0 3.1.0
@types/d3-scale-chromatic 3.0.0 3.0.3
jquery 3.7.0 3.7.1
mini-css-extract-plugin 1.6.2 2.9.1
ol 5.3.3 10.1.0
sass 1.32.13 1.77.8
sass-loader 11.1.1 16.0.1
ts-loader 9.4.4 9.5.1
typescript 4.9.5 5.5.4
vue 2.7.14 3.4.38
vue-loader 15.10.1 17.4.2
vue-multiselect 2.1.7 3.0.0
vue-template-compiler 2.7.14 2.7.16
webpack 5.88.2 5.94.0
webpack-cli 4.10.0 5.1.4

Updates @types/c3 from 0.7.8 to 0.7.11

Commits

Updates @types/node from 15.14.9 to 22.5.2

Commits

Updates @types/stripe-v3 from 3.1.29 to 3.1.33

Commits

Updates @types/uikit from 3.14.0 to 3.14.5

Commits

Updates css-loader from 5.2.7 to 7.1.2

Release notes

Sourced from css-loader's releases.

v7.1.2

7.1.2 (2024-05-22)

Bug Fixes

  • keep order of @imports with the webpackIgnore comment (#1600) (76757ef)

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

... (truncated)

Changelog

Sourced from css-loader's changelog.

7.1.2 (2024-05-22)

Bug Fixes

  • keep order of @imports with the webpackIgnore comment (#1600) (76757ef)

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

... (truncated)

Commits

Updates d3-scale-chromatic from 3.0.0 to 3.1.0

Release notes

Sourced from d3-scale-chromatic's releases.

v3.1.0

  • Add d3.schemeObservable10. #51
Commits

Updates @types/d3-scale-chromatic from 3.0.0 to 3.0.3

Commits

Updates jquery from 3.7.0 to 3.7.1

Release notes

Sourced from jquery's releases.

jQuery 3.7.1 Released: Reliable Table Row Dimensions

https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/

Commits
  • f79d5f1 3.7.1
  • 399b201 Release: revert change that broke release
  • f85d521 Release: update authors
  • 763ade6 Build: Generate the slim build on grunt & run compare_size on it
  • a288838 CSS: Make the reliableTrDimensions support test work with Bootstrap CSS (3.x ...
  • 87467a6 Selector: Only attach the unload handler in IE & Edge Legacy
  • 3c18c1f Build: Make sure *.cjs & *.mjs files use UNIX line endings as well
  • 72ae577 Build: switch preferred email for timmywil
  • a370d7d Build: Build: Bump actions/checkout from 3.5.2 to 3.5.3
  • 4a29888 Docs: Fix typos found by codespell
  • Additional commits viewable in compare view

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

Release notes

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

v2.9.1

2.9.1 (2024-08-19)

Bug Fixes

  • add export default {} when CSS modules enabled and a file is empty for the defaultExport option (8f77e19)

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

... (truncated)

Changelog

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

2.9.1 (2024-08-19)

Bug Fixes

  • add export default {} when CSS modules enabled and a file is empty for the defaultExport option (8f77e19)

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

... (truncated)

Commits

Updates ol from 5.3.3 to 10.1.0

Release notes

Sourced from ol's releases.

v10.1.0

Thanks to those who contributed to the 10.1 release! See below for a complete list of new features and fixes.

🎂 features

🐜 fixes

... (truncated)

Commits
  • 1e605bc Updates for the 10.1.0 release
  • 108b47c Merge pull request #16114 from ahocevar/jsdoc-override
  • 9a07b18 Update jsdoc-plugin-typescript to fix @override handling
  • bc4f0f6 Merge pull request #16107 from openlayers/dependabot/npm_and_yarn/proj4-2.12.0
  • d51a32f Merge pull request #16106 from openlayers/dependabot/npm_and_yarn/rollup-4.21.0
  • fd98658 Merge pull request #16094 from chrismayer/16076-focus-shadom-dom-2
  • ed3be4c Merge pull request #16105 from openlayers/dependabot/npm_and_yarn/typescript-...
  • a787edf Bump rollup from 4.20.0 to 4.21.0
  • e5d3199 Bump proj4 from 2.11.0 to 2.12.0
  • 7110281 Merge pull request #16104 from openlayers/dependabot/npm_and_yarn/ol-mapbox-s...
  • Additional commits viewable in compare view

Updates sass from 1.32.13 to 1.77.8

Release notes

Sourced from sass's releases.

Dart Sass 1.77.8

To install Sass 1.77.8, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.5

To install Sass 1.77.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fully trim redundant selectors generated by @extend.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.4

To install Sass 1.77.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

See the full changelog for changes in earlier releases.

Dart Sass 1.77.3

To install Sass 1.77.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Dart API

... (truncated)

Changelog

Sourced from sass's changelog.

1.77.8

  • No user-visible changes.

1.77.7

  • Declarations that appear after nested rules are deprecated, because the semantics Sass has historically used are different from the semantics specified by CSS. In the future, Sass will adopt the standard CSS semantics.

    See the Sass website for details.

  • Potentially breaking bug fix: // in certain places such as unknown at-rule values was being preserved in the CSS output, leading to potentially invalid CSS. It's now properly parsed as a silent comment and omitted from the CSS output.

1.77.6

  • Fix a few cases where comments and occasionally even whitespace wasn't allowed between the end of Sass statements and the following semicolon.

1.77.5

  • Fully trim redundant selectors generated by @extend.

1.77.4

Embedded Sass

  • Support passing Version input for fatalDeprecations as string over embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted as input for silenceDeprecations and futureDeprecations in pure JS.

1.77.3

Dart API

  • Deprecation.duplicateVariableFlags has been deprecated and replaced with Deprecation.duplicateVarFlags to make it consistent with the duplicate-var-flags name used on the command line and in the JS API.

1.77.2

  • Don't emit deprecation warnings for functions and mixins beginning with __.

  • Allow user-defined functions whose names begin with _ and otherwise look like vendor-prefixed functions with special CSS syntax.

... (truncated)

Commits
  • be9c3ac Run Windows ARM64 releases on windows-latest instead (#2275)
  • d4b1939 Run pub in verbose mode on windows-arm64
  • c96b5e2 Fix windows-arm64 release (#2274)
  • 7203d65 Deprecated mixed declarations (#2267)
  • 1edc247 Avoid [this] in Dartdoc comments (#2273)
  • a164889 Enable AOT build for windows-arm64 (#2270)
  • 04b6251 Parse silent comments in _interpolatedDeclarationValue() (#2266)
  • 860eb5a Fix linux-ia32, linux-arm-musl, and windows-arm64 releases (#2265)
  • 7aae1e6 Fix a bug where comments were incorrectly forbidden in some cases (#2264)
  • cf6f9d0 Build AOT releases with native arm64 runners (#2262)
  • Additional commits viewable in compare view

Updates sass-loader from 11.1.1 to 16.0.1

Release notes

Sourced from sass-loader's releases.

v16.0.1

16.0.1 (2024-08-19)

Bug Fixes

  • generate correct sourceMaps for modern-compiler api (#1228) (f862f7a)

v16.0.0

16.0.0 (2024-07-26)

⚠ BREAKING CHANGES

  • use modern Sass JS API by default for sass and sass-embedded

[!WARNING]

The sass options are different for the legacy (before) and modern APIs. Please look at docs how to migrate to the modern options. Legacy options - https://sass-lang.com/documentation/js-api/interfaces/legacystringoptions/ Modern options - https://sass-lang.com/documentation/js-api/interfaces/options/

To return to the previous logic use:

module.exports = {
  module: {
    rules: [
      {
        test: /\.s[ac]ss$/i,
        use: [
          "style-loader",
          "css-loader",
          {
            loader: "sass-loader",
            options: {
              api: "legacy",
              // Your options
            },
          },
        ],
      },
    ],
  },
};

Features

  • use modern Sass JS API by default for sass and sass-embedded (10be1ba)

... (truncated)

Changelog

Sourced from sass-loader's changelog.

16.0.1 (2024-08-19)

Bug Fixes

  • generate correct sourceMaps for modern-compiler api (#1228) (f862f7a)

16.0.0 (2024-07-26)

⚠ BREAKING CHANGES

  • use modern Sass JS API by default for sass and sass-embedded

[!WARNING]

The sass options are different for the legacy (before) and modern APIs. Please look at docs how to migrate to the modern options. Legacy options - https://sass-lang.com/documentation/js-api/interfaces/legacystringoptions/ Modern options - https://sass-lang.com/documentation/js-api/interfaces/options/

To return to the previous logic use:

module.exports = {
  module: {
    rules: [
      {
        test: /\.s[ac]ss$/i,
        use: [
          "style-loader",
          "css-loader",
          {
            loader: "sass-loader",
            options: {
              api: "legacy",
              // Your options
            },
          },
        ],
      },
    ],
  },
};

Features

  • use modern Sass JS API by default for sass and sass-embedded (10be1ba)

15.0.0 (2024-07-23)

... (truncated)

Commits

Updates ts-loader from 9.4.4 to 9.5.1

Release notes

Sourced from ts-loader's releases.

v9.5.1

v9.5.0

Changelog

Sourced from ts-loader's changelog.

9.5.1

9.5.0

Commits

Updates typescript from 4.9.5 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates vue from 2.7.14 to 3.4.38

Release notes

Sourced from vue's releases.

v3.4.38

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.37

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.36

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.35

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.34

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.33

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.32

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.31

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.30

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.29

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.4.28

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please r...

Description has been truncated

Bumps the npm group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/c3](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/c3) | `0.7.8` | `0.7.11` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `15.14.9` | `22.5.2` |
| [@types/stripe-v3](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/stripe-v3) | `3.1.29` | `3.1.33` |
| [@types/uikit](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uikit) | `3.14.0` | `3.14.5` |
| [css-loader](https://github.com/webpack-contrib/css-loader) | `5.2.7` | `7.1.2` |
| [d3-scale-chromatic](https://github.com/d3/d3-scale-chromatic) | `3.0.0` | `3.1.0` |
| [@types/d3-scale-chromatic](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/d3-scale-chromatic) | `3.0.0` | `3.0.3` |
| [jquery](https://github.com/jquery/jquery) | `3.7.0` | `3.7.1` |
| [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) | `1.6.2` | `2.9.1` |
| [ol](https://github.com/openlayers/openlayers) | `5.3.3` | `10.1.0` |
| [sass](https://github.com/sass/dart-sass) | `1.32.13` | `1.77.8` |
| [sass-loader](https://github.com/webpack-contrib/sass-loader) | `11.1.1` | `16.0.1` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `9.4.4` | `9.5.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `4.9.5` | `5.5.4` |
| [vue](https://github.com/vuejs/core) | `2.7.14` | `3.4.38` |
| [vue-loader](https://github.com/vuejs/vue-loader) | `15.10.1` | `17.4.2` |
| [vue-multiselect](https://github.com/suadelabs/vue-multiselect) | `2.1.7` | `3.0.0` |
| [vue-template-compiler](https://github.com/vuejs/vue) | `2.7.14` | `2.7.16` |
| [webpack](https://github.com/webpack/webpack) | `5.88.2` | `5.94.0` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `4.10.0` | `5.1.4` |



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

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

Updates `@types/stripe-v3` from 3.1.29 to 3.1.33
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/stripe-v3)

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

Updates `css-loader` from 5.2.7 to 7.1.2
- [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.2)

Updates `d3-scale-chromatic` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/d3/d3-scale-chromatic/releases)
- [Commits](d3/d3-scale-chromatic@v3.0.0...v3.1.0)

Updates `@types/d3-scale-chromatic` from 3.0.0 to 3.0.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/d3-scale-chromatic)

Updates `jquery` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/jquery/jquery/releases)
- [Changelog](https://github.com/jquery/jquery/blob/main/changelog.md)
- [Commits](jquery/jquery@3.7.0...3.7.1)

Updates `mini-css-extract-plugin` from 1.6.2 to 2.9.1
- [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.1)

Updates `ol` from 5.3.3 to 10.1.0
- [Release notes](https://github.com/openlayers/openlayers/releases)
- [Commits](openlayers/openlayers@v5.3.3...v10.1.0)

Updates `sass` from 1.32.13 to 1.77.8
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.32.13...1.77.8)

Updates `sass-loader` from 11.1.1 to 16.0.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@v11.1.1...v16.0.1)

Updates `ts-loader` from 9.4.4 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@v9.4.4...v9.5.1)

Updates `typescript` from 4.9.5 to 5.5.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v4.9.5...v5.5.4)

Updates `vue` from 2.7.14 to 3.4.38
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/v3.4.38/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.4.38)

Updates `vue-loader` from 15.10.1 to 17.4.2
- [Release notes](https://github.com/vuejs/vue-loader/releases)
- [Changelog](https://github.com/vuejs/vue-loader/blob/main/CHANGELOG.md)
- [Commits](vuejs/vue-loader@v15.10.1...v17.4.2)

Updates `vue-multiselect` from 2.1.7 to 3.0.0
- [Release notes](https://github.com/suadelabs/vue-multiselect/releases)
- [Commits](https://github.com/suadelabs/vue-multiselect/commits)

Updates `vue-template-compiler` from 2.7.14 to 2.7.16
- [Release notes](https://github.com/vuejs/vue/releases)
- [Changelog](https://github.com/vuejs/vue/blob/main/CHANGELOG.md)
- [Commits](vuejs/vue@v2.7.14...v2.7.16)

Updates `webpack` from 5.88.2 to 5.94.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.88.2...v5.94.0)

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: "@types/c3"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@types/stripe-v3"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/uikit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: css-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: d3-scale-chromatic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/d3-scale-chromatic"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: jquery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: mini-css-extract-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: ol
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: sass-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: ts-loader
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue-loader
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue-multiselect
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: vue-template-compiler
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: webpack
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: webpack-cli
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 1, 2024
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