@tracktor/shared-module 2.14.1 → 2.14.3
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 +3 -17
- package/package.json +11 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.14.
|
|
3
|
+
## [2.14.3] - 2025-07-02
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
-
|
|
7
|
-
- ⬆️ **vite-plugin-dts**: `^3.x.x` → `^4.5.4` - Enhanced TypeScript declaration generation
|
|
8
|
-
- ⬆️ **vitest**: `^1.x.x` → `^1.6.1` - Latest testing improvements and bug fixes
|
|
9
|
-
- ⬆️ **@vitejs/plugin-react**: `^4.x.x` → `^4.6.0` - Updated React plugin for better compatibility
|
|
10
|
-
- ⬆️ **axios**: `^1.x.x` → `^1.9.0` - Security updates and performance improvements
|
|
11
|
-
|
|
12
|
-
### 🛠️ Build System
|
|
13
|
-
- Updated to Vite 7 for faster builds and better developer experience
|
|
14
|
-
- Improved TypeScript compilation pipeline
|
|
15
|
-
- Enhanced development tooling
|
|
16
|
-
|
|
17
|
-
### 🔧 Technical Improvements
|
|
18
|
-
- Better build performance and bundling optimization
|
|
19
|
-
- Improved development server and hot module replacement
|
|
20
|
-
- Enhanced type checking and declaration file generation
|
|
5
|
+
### 🔧 Fixed
|
|
6
|
+
- **package.json exports**: Fixed peer dependency react
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tracktor/shared-module",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"types": "./dist/main.d.ts",
|
|
@@ -12,18 +12,16 @@
|
|
|
12
12
|
],
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
|
+
"types": "./dist/main.d.ts",
|
|
15
16
|
"import": "./dist/main.js",
|
|
16
|
-
"require": "./dist/main.cjs"
|
|
17
|
+
"require": "./dist/main.cjs",
|
|
18
|
+
"default": "./dist/main.cjs"
|
|
17
19
|
},
|
|
18
20
|
"./axios": {
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"require": {
|
|
24
|
-
"types": "./dist/axios.d.ts",
|
|
25
|
-
"default": "./dist/axios.cjs"
|
|
26
|
-
}
|
|
21
|
+
"types": "./dist/axios.d.ts",
|
|
22
|
+
"import": "./dist/axios.js",
|
|
23
|
+
"require": "./dist/axios.cjs",
|
|
24
|
+
"default": "./dist/axios.cjs"
|
|
27
25
|
}
|
|
28
26
|
},
|
|
29
27
|
"typesVersions": {
|
|
@@ -48,7 +46,7 @@
|
|
|
48
46
|
"prepare": "yarn run build && husky install"
|
|
49
47
|
},
|
|
50
48
|
"dependencies": {
|
|
51
|
-
"axios": "^1.
|
|
49
|
+
"axios": "^1.9.0"
|
|
52
50
|
},
|
|
53
51
|
"devDependencies": {
|
|
54
52
|
"@testing-library/jest-dom": "^5.17.0",
|
|
@@ -69,7 +67,7 @@
|
|
|
69
67
|
},
|
|
70
68
|
"peerDependencies": {
|
|
71
69
|
"axios": "*",
|
|
72
|
-
"react": "
|
|
73
|
-
"react-dom": "
|
|
70
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
71
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
74
72
|
}
|
|
75
73
|
}
|