@m1kad0/esp-nvs-utils 0.1.0 → 0.1.2
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 +7 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -104,7 +104,13 @@ npm run format
|
|
|
104
104
|
npm run lint
|
|
105
105
|
|
|
106
106
|
```
|
|
107
|
-
|
|
107
|
+
## Changelog
|
|
108
|
+
<!--
|
|
109
|
+
Placeholder for the next version (at the beginning of the line):
|
|
110
|
+
### **WORK IN PROGRESS**
|
|
111
|
+
-->
|
|
112
|
+
### 0.1.2 (2026-06-11)
|
|
113
|
+
- Chore: First Version
|
|
108
114
|
|
|
109
115
|
## License
|
|
110
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m1kad0/esp-nvs-utils",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "ESP-IDF NVS partition encoder/decoder for Node.js and browsers",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"lint": "oxlint --deny-warnings src test",
|
|
37
37
|
"format": "oxfmt src test",
|
|
38
38
|
"format:check": "oxfmt --check src test",
|
|
39
|
-
"typecheck": "tsc --noEmit"
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"release": "release-script"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
43
|
"@types/jest": "^29.5.14",
|