@widergy/mobile-ui 2.12.0 → 2.12.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.12.1](https://github.com/widergy/mobile-ui/compare/v2.12.0...v2.12.1) (2026-04-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * [DEV-766] remove --cache flag from eslint lint scripts ([#497](https://github.com/widergy/mobile-ui/issues/497)) ([fe01153](https://github.com/widergy/mobile-ui/commit/fe011534839012d5b9c67666ad3be7d3f05edb4c))
7
+
1
8
  # [2.12.0](https://github.com/widergy/mobile-ui/compare/v2.11.0...v2.12.0) (2026-04-13)
2
9
 
3
10
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@widergy/mobile-ui",
3
3
  "description": "Widergy Mobile Components",
4
4
  "author": "widergy",
5
- "version": "2.12.0",
5
+ "version": "2.12.1",
6
6
  "repository": "https://github.com/widergy/mobile-ui.git",
7
7
  "main": "lib/index.js",
8
8
  "files": [
@@ -13,10 +13,10 @@
13
13
  "lint:fix": "eslint --fix lib example/src",
14
14
  "lint": "yarn lint:example && yarn lint:root",
15
15
  "lint-suppress": "yarn lint-suppress:example & yarn lint-suppress:root",
16
- "lint:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --cache --prune-suppressions example/src",
17
- "lint:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --cache --prune-suppressions lib",
18
- "lint-suppress:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --cache --suppress-all example/src",
19
- "lint-suppress:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --cache --suppress-all lib",
16
+ "lint:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --prune-suppressions example/src",
17
+ "lint:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --prune-suppressions lib",
18
+ "lint-suppress:example": "eslint --config example/eslint.config.mjs --suppressions-location ./example/eslint-suppressions.json --suppress-all example/src",
19
+ "lint-suppress:root": "eslint --config eslint.config.mjs --suppressions-location ./eslint-suppressions.json --suppress-all lib",
20
20
  "lint-diff": "git diff --name-only --cached --relative --diff-filter=ACM | grep \\.js$ | xargs ./node_modules/eslint/bin/eslint.js",
21
21
  "build": "babel lib --out-dir dist",
22
22
  "test": "jest",