@supermousejs/utils 2.0.0 → 2.0.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @supermousejs/utils
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Add minimal README.md files to packages
8
+ - Updated dependencies
9
+ - @supermousejs/core@2.0.1
10
+
3
11
  ## 2.0.0
4
12
 
5
13
  ### Major Changes
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+
2
+ # @supermousejs/utils
3
+
4
+ Shared utilities and helpers for the Supermouse ecosystem.
5
+ Used primarily by plugin authors.
6
+
7
+ ## Features
8
+
9
+ - **Math:** `lerp`, `damp` (frame-independent), `angle`, `dist`.
10
+ - **DOM:** `createActor`, `setStyle` (cached), `setTransform`.
11
+ - **Plugin:** `definePlugin` helper for type-safe plugin creation.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@supermousejs/utils",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
7
7
  "dependencies": {
8
- "@supermousejs/core": "2.0.0"
8
+ "@supermousejs/core": "2.0.1"
9
9
  },
10
10
  "exports": {
11
11
  ".": {