@alwatr/local-storage 6.1.0 → 6.1.1
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 +6 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +18 -20
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.1.1](https://github.com/Alwatr/nanolib/compare/@alwatr/local-storage@6.1.0...@alwatr/local-storage@6.1.1) (2025-09-13)
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
* remove duplicate "types" entry in package.json ([86dce1a](https://github.com/Alwatr/nanolib/commit/86dce1a88ad3c605fe03f335d4f4813aad573ed8))
|
|
11
|
+
|
|
6
12
|
## [6.1.0](https://github.com/Alwatr/nanolib/compare/@alwatr/local-storage@6.0.0...@alwatr/local-storage@6.1.0) (2025-09-13)
|
|
7
13
|
|
|
8
14
|
### ✨ Features
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/local-storage v6.1.
|
|
1
|
+
/* @alwatr/local-storage v6.1.1 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -37,7 +37,7 @@ var LocalStorageProvider = class _LocalStorageProvider {
|
|
|
37
37
|
this.migrate__();
|
|
38
38
|
}
|
|
39
39
|
static {
|
|
40
|
-
this.version = "6.1.
|
|
40
|
+
this.version = "6.1.1";
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
43
|
* Generates the versioned storage key.
|
package/dist/main.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/local-storage v6.1.
|
|
1
|
+
/* @alwatr/local-storage v6.1.1 */
|
|
2
2
|
|
|
3
3
|
// src/local-storage.provider.ts
|
|
4
4
|
import { createLogger } from "@alwatr/logger";
|
|
@@ -11,7 +11,7 @@ var LocalStorageProvider = class _LocalStorageProvider {
|
|
|
11
11
|
this.migrate__();
|
|
12
12
|
}
|
|
13
13
|
static {
|
|
14
|
-
this.version = "6.1.
|
|
14
|
+
this.version = "6.1.1";
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* Generates the versioned storage key.
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/local-storage",
|
|
3
3
|
"description": "A modern, simple, and robust solution for managing versioned JSON objects in the browser's `localStorage`. This package provides a clean, class-based API with a factory function to ensure your application's data persistence is safe, maintainable, and future-proof.",
|
|
4
|
-
"version": "6.1.
|
|
4
|
+
"version": "6.1.1",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"bugs": "https://github.com/Alwatr/nanolib/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@alwatr/logger": "5.6.
|
|
8
|
+
"@alwatr/logger": "5.6.2"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@alwatr/nano-build": "6.1.
|
|
11
|
+
"@alwatr/nano-build": "6.1.2",
|
|
12
12
|
"@alwatr/prettier-config": "5.0.3",
|
|
13
13
|
"@alwatr/tsconfig-base": "6.0.1",
|
|
14
|
-
"@alwatr/type-helper": "6.0.
|
|
14
|
+
"@alwatr/type-helper": "6.0.2",
|
|
15
15
|
"@jest/globals": "^30.1.2",
|
|
16
16
|
"typescript": "^5.9.2"
|
|
17
17
|
},
|
|
@@ -30,23 +30,21 @@
|
|
|
30
30
|
"homepage": "https://github.com/Alwatr/nanolib/tree/next/packages/local-storage#readme",
|
|
31
31
|
"keywords": [
|
|
32
32
|
"alwatr",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
33
|
+
"localStorage",
|
|
34
|
+
"JSON storage",
|
|
35
|
+
"browser storage",
|
|
36
|
+
"data persistence",
|
|
37
|
+
"versioning",
|
|
38
|
+
"automatic migration",
|
|
39
|
+
"provider pattern",
|
|
40
|
+
"facade factory",
|
|
41
|
+
"TypeScript",
|
|
42
|
+
"JavaScript",
|
|
43
|
+
"ESM",
|
|
43
44
|
"module",
|
|
44
45
|
"nanolib",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"util",
|
|
48
|
-
"utility",
|
|
49
|
-
"utils"
|
|
46
|
+
"cross-platform",
|
|
47
|
+
"utility"
|
|
50
48
|
],
|
|
51
49
|
"license": "MPL-2.0",
|
|
52
50
|
"main": "./dist/main.cjs",
|
|
@@ -76,5 +74,5 @@
|
|
|
76
74
|
},
|
|
77
75
|
"type": "module",
|
|
78
76
|
"types": "./dist/main.d.ts",
|
|
79
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "4da18811162df49c118acd71086cdbe38b27f250"
|
|
80
78
|
}
|