@dnd-kit/modifiers 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +7 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @dnd-kit/modifiers
2
2
 
3
+ ## 2.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`68960c4`](https://github.com/clauderic/dnd-kit/commit/68960c490f50962b47a57663ee0625d7704173ec) [#295](https://github.com/clauderic/dnd-kit/pull/295) Thanks [@akhmadullin](https://github.com/akhmadullin)! - `@dnd-kit/core` is now a `peerDependency` rather than a `dependency` for other `@dnd-kit` packages that depend on it, such as `@dnd-kit/sortable` and `@dnd-kit/modifiers`. This is done to avoid issues with multiple versions of `@dnd-kit/core` being installed by some package managers such as Yarn 2.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`ae398de`](https://github.com/clauderic/dnd-kit/commit/ae398de012aee28f5e3bec10b438153d00f65630), [`8b938ce`](https://github.com/clauderic/dnd-kit/commit/8b938ceb158c67e9fdc4616351d1a3291ac614c3)]:
12
+ - @dnd-kit/core@3.0.4
13
+
3
14
  ## 2.0.0
4
15
 
5
16
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnd-kit/modifiers",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Translate modifier presets for use with `@dnd-kit` packages.",
5
5
  "author": "Claudéric Demers",
6
6
  "license": "MIT",
@@ -26,10 +26,15 @@
26
26
  "dist"
27
27
  ],
28
28
  "dependencies": {
29
- "@dnd-kit/core": "^3.0.0",
30
29
  "@dnd-kit/utilities": "^2.0.0",
31
30
  "tslib": "^2.0.0"
32
31
  },
32
+ "peerDependencies": {
33
+ "@dnd-kit/core": "^3.0.4"
34
+ },
35
+ "devDependencies": {
36
+ "@dnd-kit/core": "^3.0.4"
37
+ },
33
38
  "publishConfig": {
34
39
  "access": "public"
35
40
  }