ecars-web-lib 1.0.9 → 1.0.11
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/dist/components/Accordion/AccordionComponent.test.d.ts +1 -0
- package/dist/components/Button/Button.test.d.ts +1 -0
- package/dist/components/ButtonWithIcon/ButtonWithIcon.test.d.ts +1 -0
- package/dist/components/Category/Category.test.d.ts +1 -0
- package/dist/components/Checkbox/CheckboxComponent.test.d.ts +1 -0
- package/dist/components/Dropdown/Dropdown.test.d.ts +1 -0
- package/dist/components/FavButton/FavButton.test.d.ts +1 -0
- package/dist/components/Field/FieldComponent.test.d.ts +1 -0
- package/dist/components/FilterAccordion/FilterAccordionComponent.test.d.ts +1 -0
- package/dist/components/FilterButton/FilterButton.test.d.ts +1 -0
- package/dist/components/Gallery/Gallery.test.d.ts +0 -0
- package/dist/components/Input/Input.test.d.ts +1 -0
- package/dist/components/LinkWithIcon/LinkWithIcon.test.d.ts +1 -0
- package/dist/components/NavLink/NavLink.test.d.ts +1 -0
- package/dist/components/Pagination/Pagination.test.d.ts +1 -0
- package/dist/components/RangeSlider/RangeSlider.test.d.ts +1 -0
- package/dist/components/RouterLink/RouterLink.test.d.ts +1 -0
- package/dist/components/Select/Select.test.d.ts +1 -0
- package/dist/components/SliderNavigate/SliderNavigate.test.d.ts +1 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ecars-web-lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"predeploy": "tsc --p ./tsconfig-build.json && vite build",
|
|
27
27
|
"deploy": "gh-pages -d dist",
|
|
28
28
|
"lint": "eslint lib --ext .js,.jsx,.ts,.tsx",
|
|
29
|
-
"test": "
|
|
29
|
+
"test": "vitest",
|
|
30
|
+
"test:watch": "vitest --watch",
|
|
31
|
+
"test:ui": "vitest --ui",
|
|
30
32
|
"lint:fix": "eslint lib --ext .js,.jsx,.ts,.tsx --fix",
|
|
31
33
|
"prettier": "prettier lib --ext .js,.jsx,.ts,.tsx",
|
|
32
34
|
"prettier:write": "prettier --write lib --ext .js,.jsx,.ts,.tsx",
|
|
@@ -56,13 +58,15 @@
|
|
|
56
58
|
"@storybook/test": "^8.6.12",
|
|
57
59
|
"@testing-library/jest-dom": "^6.6.3",
|
|
58
60
|
"@testing-library/react": "^16.3.0",
|
|
59
|
-
"@types/
|
|
60
|
-
"@types/node": "^22.10.1",
|
|
61
|
+
"@types/node": "^24.2.1",
|
|
61
62
|
"@types/react": "^18.3.12",
|
|
62
63
|
"@types/react-dom": "^18.3.1",
|
|
63
64
|
"@typescript-eslint/eslint-plugin": "^8.29.1",
|
|
64
65
|
"@vitejs/plugin-react": "^4.3.4",
|
|
66
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
65
67
|
"@vitest/eslint-plugin": "^1.1.40",
|
|
68
|
+
"ajv": "^8.17.1",
|
|
69
|
+
"ajv-draft-04": "^1.0.0",
|
|
66
70
|
"dart-sass": "^1.25.0",
|
|
67
71
|
"dotenv": "^16.4.7",
|
|
68
72
|
"esbuild-plugin-sass": "^1.0.1",
|
|
@@ -80,7 +84,6 @@
|
|
|
80
84
|
"glob": "^11.0.1",
|
|
81
85
|
"globals": "^15.12.0",
|
|
82
86
|
"init": "^0.1.2",
|
|
83
|
-
"jest": "^29.7.0",
|
|
84
87
|
"jest-environment-jsdom": "^29.7.0",
|
|
85
88
|
"jest-junit": "^16.0.0",
|
|
86
89
|
"jiti": "^2.4.2",
|
|
@@ -89,15 +92,13 @@
|
|
|
89
92
|
"react-icons": "^5.5.0",
|
|
90
93
|
"react-router": "^7.2.0",
|
|
91
94
|
"storybook-addon-sass-postcss": "^0.3.2",
|
|
92
|
-
"ts-jest": "^29.4.0",
|
|
93
95
|
"ts-node": "^10.9.2",
|
|
94
96
|
"typescript": "~5.6.2",
|
|
95
97
|
"typescript-eslint": "^8.15.0",
|
|
96
98
|
"vite": "^6.2.5",
|
|
97
99
|
"vite-plugin-dts": "^4.3.0",
|
|
98
100
|
"vite-plugin-lib-inject-css": "^2.2.1",
|
|
99
|
-
"
|
|
100
|
-
"ajv-draft-04": "^1.0.0"
|
|
101
|
+
"vitest": "^3.2.4"
|
|
101
102
|
},
|
|
102
103
|
"peerDependencies": {
|
|
103
104
|
"react": "^18.3.1",
|