@rdyl/react-i18n-connect 0.0.4 → 0.0.6

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## 0.0.4 (2025-06-06)
1
+ ## 0.0.5 (2025-06-06)
2
2
 
3
3
 
4
4
 
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@rdyl/react-i18n-connect",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "license": "MIT",
5
+ "main": "dist/index.js",
6
+ "types": "types/index.d.ts",
5
7
  "publishConfig": {
6
8
  "access": "public"
7
9
  },
@@ -11,16 +13,6 @@
11
13
  "CHANGELOG.md",
12
14
  "README.md"
13
15
  ],
14
- "exports": {
15
- ".": {
16
- "import": "./dist/index.js",
17
- "types": "./types/index.d.ts"
18
- },
19
- "./resolve": {
20
- "import": "./dist/resolve.js",
21
- "types": "./types/resolve.d.ts"
22
- }
23
- },
24
16
  "scripts": {
25
17
  "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
26
18
  "build": "tsc && copyfiles -u 1 src/**/*.d.ts src/*.d.ts types && npm run changelog && git add CHANGELOG.md"
@@ -1,2 +0,0 @@
1
- declare function loadFiles(): void;
2
- export default loadFiles;