@alwatr/nitrobase-types 7.5.5 → 7.5.8
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 +13 -0
- package/dist/main.cjs +2 -3
- package/dist/main.mjs +2 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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
|
+
## [7.5.8](https://github.com/Alwatr/nitrobase/compare/v7.5.7...v7.5.8) (2025-02-18)
|
|
7
|
+
|
|
8
|
+
### Dependencies update
|
|
9
|
+
|
|
10
|
+
* bump @alwatr/nanolib, @alwatr/nano-build, and @types/node to latest versions across multiple packages ([3e89c62](https://github.com/Alwatr/nitrobase/commit/3e89c62ad20f3afe0c38c6ae36d91bcb6199b231)) by @
|
|
11
|
+
* **deps-dev:** bump the dependencies group across 1 directory with 2 updates ([03715d0](https://github.com/Alwatr/nitrobase/commit/03715d0b5534b127dfb57ffe0ea713fb168eefe6)) by @dependabot[bot]
|
|
12
|
+
|
|
13
|
+
## [7.5.7](https://github.com/Alwatr/nitrobase/compare/v7.5.6...v7.5.7) (2025-02-03)
|
|
14
|
+
|
|
15
|
+
### Dependencies update
|
|
16
|
+
|
|
17
|
+
* update [@alwatr](https://github.com/alwatr) dependencies to latest versions ([f8bb10f](https://github.com/Alwatr/nitrobase/commit/f8bb10fa3343f25e2a442e80fbddb88c55fac813)) by @
|
|
18
|
+
|
|
6
19
|
## [7.5.5](https://github.com/Alwatr/nitrobase/compare/v7.5.4...v7.5.5) (2025-02-02)
|
|
7
20
|
|
|
8
21
|
### Dependencies update
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/nitrobase-types v7.5.
|
|
1
|
+
/* @alwatr/nitrobase-types v7.5.8 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -27,7 +27,7 @@ __export(main_exports, {
|
|
|
27
27
|
});
|
|
28
28
|
module.exports = __toCommonJS(main_exports);
|
|
29
29
|
var import_nanolib = require("@alwatr/nanolib");
|
|
30
|
-
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/nitrobase-types", "7.5.
|
|
30
|
+
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/nitrobase-types", "7.5.8");
|
|
31
31
|
var Region = /* @__PURE__ */ ((Region2) => {
|
|
32
32
|
Region2["Public"] = "p";
|
|
33
33
|
Region2["Authenticated"] = "a";
|
|
@@ -53,5 +53,4 @@ var StoreFileExtension = /* @__PURE__ */ ((StoreFileExtension2) => {
|
|
|
53
53
|
StoreFileExtension,
|
|
54
54
|
StoreFileType
|
|
55
55
|
});
|
|
56
|
-
/*! For license information please see main.cjs.LEGAL.txt */
|
|
57
56
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/* @alwatr/nitrobase-types v7.5.
|
|
1
|
+
/* @alwatr/nitrobase-types v7.5.8 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { packageTracer } from "@alwatr/nanolib";
|
|
5
|
-
__dev_mode__: packageTracer.add("@alwatr/nitrobase-types", "7.5.
|
|
5
|
+
__dev_mode__: packageTracer.add("@alwatr/nitrobase-types", "7.5.8");
|
|
6
6
|
var Region = /* @__PURE__ */ ((Region2) => {
|
|
7
7
|
Region2["Public"] = "p";
|
|
8
8
|
Region2["Authenticated"] = "a";
|
|
@@ -27,5 +27,4 @@ export {
|
|
|
27
27
|
StoreFileExtension,
|
|
28
28
|
StoreFileType
|
|
29
29
|
};
|
|
30
|
-
/*! For license information please see main.mjs.LEGAL.txt */
|
|
31
30
|
//# sourceMappingURL=main.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nitrobase-types",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.8",
|
|
4
4
|
"description": "Nitrobase is a blazingly fast, lightweight database built on JSON. It stores data entirely in memory for lightning-quick access, while also providing a JSON file backup for persistence. You can easily serve your data over the web using our high-performance accelerated Nginx server.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -60,15 +60,15 @@
|
|
|
60
60
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@alwatr/nanolib": "^5.
|
|
63
|
+
"@alwatr/nanolib": "^5.4.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@alwatr/nano-build": "^5.
|
|
66
|
+
"@alwatr/nano-build": "^5.4.0",
|
|
67
67
|
"@alwatr/prettier-config": "^5.0.0",
|
|
68
68
|
"@alwatr/tsconfig-base": "^5.0.0",
|
|
69
|
-
"@alwatr/type-helper": "^5.
|
|
70
|
-
"@types/node": "^22.13.
|
|
69
|
+
"@alwatr/type-helper": "^5.3.0",
|
|
70
|
+
"@types/node": "^22.13.4",
|
|
71
71
|
"typescript": "^5.7.3"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "e7dad8e9ad71ab1eb783e1f8204abba2b6f7fbe8"
|
|
74
74
|
}
|