@m1kad0/esp-nvs-utils 0.2.1 → 0.2.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/README.md +2 -12
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -105,18 +105,8 @@ npm run lint
|
|
|
105
105
|
|
|
106
106
|
```
|
|
107
107
|
## Changelog
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
### **WORK IN PROGRESS**
|
|
111
|
-
-->
|
|
112
|
-
### 0.2.1 (2026-06-11)
|
|
113
|
-
- Fix: Set explicit `rootDir` for TypeScript 6 declaration build
|
|
114
|
-
|
|
115
|
-
### 0.2.0 (2026-06-11)
|
|
116
|
-
- Feat: Update to Typescript 6
|
|
117
|
-
|
|
118
|
-
### 0.1.2 (2026-06-11)
|
|
119
|
-
- Chore: First Version
|
|
108
|
+
|
|
109
|
+
See [CHANGELOG.md](./CHANGELOG.md).
|
|
120
110
|
|
|
121
111
|
## License
|
|
122
112
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m1kad0/esp-nvs-utils",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "ESP-IDF NVS partition encoder/decoder for Node.js and browsers",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=24"
|
|
9
|
+
},
|
|
7
10
|
"main": "./dist/cjs/index.cjs",
|
|
8
11
|
"module": "./dist/esm/index.js",
|
|
9
12
|
"repository": {
|
|
@@ -41,7 +44,7 @@
|
|
|
41
44
|
},
|
|
42
45
|
"devDependencies": {
|
|
43
46
|
"@types/jest": "30.0.0",
|
|
44
|
-
"@types/node": "24.13.
|
|
47
|
+
"@types/node": "24.13.2",
|
|
45
48
|
"jest": "30.4.2",
|
|
46
49
|
"oxfmt": "0.54.0",
|
|
47
50
|
"oxlint": "1.69.0",
|