@twin.org/image 0.0.2-next.5 → 0.0.2-next.7

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.
@@ -219,7 +219,6 @@ class Color {
219
219
  // SPDX-License-Identifier: Apache-2.0.
220
220
  /* eslint-disable no-bitwise */
221
221
  /* eslint-disable no-mixed-operators */
222
- /* eslint-disable array-bracket-newline */
223
222
  /**
224
223
  * JPEG Encoder.
225
224
  * Based on JPEG encoder ported to JavaScript and optimized by Andreas Ritter.
@@ -961,7 +960,6 @@ class JpegEncoder {
961
960
  /* eslint-disable no-bitwise */
962
961
  /* eslint-disable no-mixed-operators */
963
962
  /* eslint-disable no-continue */
964
- /* eslint-disable unicorn/prefer-math-trunc */
965
963
  /**
966
964
  * PNG Encoder.
967
965
  * Based on https://github.com/photopea/UPNG.js.
@@ -217,7 +217,6 @@ class Color {
217
217
  // SPDX-License-Identifier: Apache-2.0.
218
218
  /* eslint-disable no-bitwise */
219
219
  /* eslint-disable no-mixed-operators */
220
- /* eslint-disable array-bracket-newline */
221
220
  /**
222
221
  * JPEG Encoder.
223
222
  * Based on JPEG encoder ported to JavaScript and optimized by Andreas Ritter.
@@ -959,7 +958,6 @@ class JpegEncoder {
959
958
  /* eslint-disable no-bitwise */
960
959
  /* eslint-disable no-mixed-operators */
961
960
  /* eslint-disable no-continue */
962
- /* eslint-disable unicorn/prefer-math-trunc */
963
961
  /**
964
962
  * PNG Encoder.
965
963
  * Based on https://github.com/photopea/UPNG.js.
package/docs/changelog.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @twin.org/image - Changelog
2
2
 
3
+ ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/image-v0.0.2-next.6...image-v0.0.2-next.7) (2025-08-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/core bumped from 0.0.2-next.6 to 0.0.2-next.7
16
+ * @twin.org/nameof bumped from 0.0.2-next.6 to 0.0.2-next.7
17
+ * devDependencies
18
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
20
+
21
+ ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/image-v0.0.2-next.5...image-v0.0.2-next.6) (2025-08-27)
22
+
23
+
24
+ ### Miscellaneous Chores
25
+
26
+ * **image:** Synchronize repo versions
27
+
28
+
29
+ ### Dependencies
30
+
31
+ * The following workspace dependencies were updated
32
+ * dependencies
33
+ * @twin.org/core bumped from 0.0.2-next.5 to 0.0.2-next.6
34
+ * @twin.org/nameof bumped from 0.0.2-next.5 to 0.0.2-next.6
35
+ * devDependencies
36
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
37
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
38
+
3
39
  ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/image-v0.0.2-next.4...image-v0.0.2-next.5) (2025-08-19)
4
40
 
5
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/image",
3
- "version": "0.0.2-next.5",
3
+ "version": "0.0.2-next.7",
4
4
  "description": "Classes for image manipulation",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,8 +14,8 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "0.0.2-next.5",
18
- "@twin.org/nameof": "0.0.2-next.5"
17
+ "@twin.org/core": "0.0.2-next.7",
18
+ "@twin.org/nameof": "0.0.2-next.7"
19
19
  },
20
20
  "main": "./dist/cjs/index.cjs",
21
21
  "module": "./dist/esm/index.mjs",