@purpurds/action 6.9.0 → 6.11.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.
@@ -0,0 +1,2 @@
1
+ import purpurCommon from "@purpurds/component-rig/eslint.config.mjs";
2
+ export default purpurCommon;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpurds/action",
3
- "version": "6.9.0",
3
+ "version": "6.11.0",
4
4
  "license": "AGPL-3.0-only",
5
5
  "main": "./dist/action.cjs.js",
6
6
  "types": "./dist/action.d.ts",
@@ -14,30 +14,26 @@
14
14
  },
15
15
  "source": "src/action.tsx",
16
16
  "dependencies": {
17
- "@purpurds/tokens": "6.9.0"
17
+ "@purpurds/tokens": "6.11.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@rushstack/eslint-patch": "~1.10.0",
21
20
  "@storybook/react": "^8.6.4",
22
- "@telia/base-rig": "~8.2.0",
23
- "@telia/react-rig": "~3.2.0",
24
21
  "@testing-library/dom": "~10.4.0",
25
22
  "@testing-library/jest-dom": "~6.4.0",
26
23
  "@testing-library/react": "~16.2.0",
27
24
  "@types/node": "20.12.12",
28
25
  "@types/react-dom": "^19.0.4",
29
26
  "@types/react": "^19.0.10",
30
- "eslint-plugin-testing-library": "~6.2.0",
31
- "eslint": "^8.57.0",
27
+ "eslint": "9.24.0",
32
28
  "jsdom": "~22.1.0",
33
- "lint-staged": "~10.5.3",
29
+ "lint-staged": "15.5.0",
34
30
  "prettier": "~2.8.8",
35
31
  "react-dom": "^19.0.0",
36
32
  "react": "^19.0.0",
37
33
  "storybook": "^8.6.4",
38
34
  "typescript": "^5.6.3",
39
35
  "vite": "^6.2.1",
40
- "vitest": "^2.1.2",
36
+ "vitest": "^3.1.2",
41
37
  "@purpurds/component-rig": "1.0.0"
42
38
  },
43
39
  "peerDependencies": {
package/.eslintrc.js DELETED
@@ -1,15 +0,0 @@
1
- require("@rushstack/eslint-patch/modern-module-resolution");
2
-
3
- module.exports = {
4
- extends: ["./node_modules/@telia/react-rig/.eslintrc.js"],
5
- rules: {
6
- curly: "error",
7
- },
8
- overrides: [
9
- {
10
- // We enable eslint-plugin-testing-library rules or preset only for matching testing files!
11
- files: ["**/__tests__/**/*.[jt]s?(x)"],
12
- extends: ["plugin:testing-library/react"],
13
- },
14
- ],
15
- };