@alwatr/nitrobase 7.2.1 → 7.3.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 +32 -0
- package/dist/main.cjs +34 -2
- package/dist/main.cjs.map +3 -3
- package/dist/main.d.ts.map +1 -1
- package/dist/main.mjs +10 -2
- package/dist/main.mjs.map +2 -2
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
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.3.1](https://github.com/Alwatr/nitrobase/compare/v7.3.0...v7.3.1) (2024-11-02)
|
|
7
|
+
|
|
8
|
+
### Miscellaneous Chores
|
|
9
|
+
|
|
10
|
+
* **deps-dev:** bump the development-dependencies group with 8 updates ([63f7adc](https://github.com/Alwatr/nitrobase/commit/63f7adc5ff83d4876f34d4f089a4be9b95b711a6)) by @dependabot[bot]
|
|
11
|
+
* **deps:** bump the alwatr-dependencies group with 2 updates ([20fb436](https://github.com/Alwatr/nitrobase/commit/20fb436b9f146d5ec7452a693c7af8faa32bedff)) by @dependabot[bot]
|
|
12
|
+
|
|
13
|
+
### Dependencies update
|
|
14
|
+
|
|
15
|
+
* **deps-dev:** bump @types/node in the dependencies group ([dd3e94a](https://github.com/Alwatr/nitrobase/commit/dd3e94a4c007da8fddda4cfeffe5f0763d74952e)) by @dependabot[bot]
|
|
16
|
+
* **deps:** bump the alwatr group with 6 updates ([eb9eeb1](https://github.com/Alwatr/nitrobase/commit/eb9eeb1901f7947cde783bf6f06340c984d6f59d)) by @dependabot[bot]
|
|
17
|
+
|
|
18
|
+
## [7.3.0](https://github.com/Alwatr/nitrobase/compare/v7.2.1...v7.3.0) (2024-10-11)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* update `import`s & packages based on the latest changes of `nanolib` & prevent side-effects ([0d66f89](https://github.com/Alwatr/nitrobase/commit/0d66f894dc4ff615ab73ebd27c275f98dc384fbe)) by @mohammadhonarvar
|
|
23
|
+
|
|
24
|
+
### Code Refactoring
|
|
25
|
+
|
|
26
|
+
* update `import`s & packages based on the latest changes of `nanolib` ([ce990a2](https://github.com/Alwatr/nitrobase/commit/ce990a2fedc5545e971c3bb6e58b55bfba8c0bd9)) by @mohammadhonarvar
|
|
27
|
+
|
|
28
|
+
### Miscellaneous Chores
|
|
29
|
+
|
|
30
|
+
* **deps-dev:** bump the development-dependencies group with 10 updates ([7bdcf3f](https://github.com/Alwatr/nitrobase/commit/7bdcf3f47ddb8e1376a1c7ae6e221811182bae58)) by @dependabot[bot]
|
|
31
|
+
* **deps:** bump the alwatr-dependencies group with 10 updates ([60afdde](https://github.com/Alwatr/nitrobase/commit/60afdde98562f3023e6624ee0579d6bdee80bc32)) by @dependabot[bot]
|
|
32
|
+
* **deps:** bump the alwatr-dependencies group with 6 updates ([1cf29b2](https://github.com/Alwatr/nitrobase/commit/1cf29b20055554945cd669ea9d022ab7c503d9fc)) by @dependabot[bot]
|
|
33
|
+
|
|
34
|
+
### Dependencies update
|
|
35
|
+
|
|
36
|
+
* cleanup dependencies ([91eab0b](https://github.com/Alwatr/nitrobase/commit/91eab0b0fc570b2493cccd5ccd891b01405450d7)) by @AliMD
|
|
37
|
+
|
|
6
38
|
## [7.2.1](https://github.com/Alwatr/nitrobase/compare/v7.2.0...v7.2.1) (2024-09-29)
|
|
7
39
|
|
|
8
40
|
### Bug Fixes
|
package/dist/main.cjs
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
-
/* @alwatr/nitrobase v7.
|
|
2
|
-
"use strict";
|
|
1
|
+
/* @alwatr/nitrobase v7.3.1 */
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __copyProps = (to, from, except, desc) => {
|
|
8
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
9
|
+
for (let key of __getOwnPropNames(from))
|
|
10
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
11
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
+
}
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
16
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
17
|
+
|
|
18
|
+
// src/main.ts
|
|
19
|
+
var main_exports = {};
|
|
20
|
+
module.exports = __toCommonJS(main_exports);
|
|
21
|
+
var import_nanolib = require("@alwatr/nanolib");
|
|
22
|
+
__reExport(main_exports, require("@alwatr/nitrobase-engine"), module.exports);
|
|
23
|
+
__reExport(main_exports, require("@alwatr/nitrobase-reference"), module.exports);
|
|
24
|
+
__reExport(main_exports, require("@alwatr/nitrobase-helper"), module.exports);
|
|
25
|
+
__reExport(main_exports, require("@alwatr/nitrobase-types"), module.exports);
|
|
26
|
+
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/nitrobase", "7.3.1");
|
|
27
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
28
|
+
0 && (module.exports = {
|
|
29
|
+
...require("@alwatr/nitrobase-engine"),
|
|
30
|
+
...require("@alwatr/nitrobase-reference"),
|
|
31
|
+
...require("@alwatr/nitrobase-helper"),
|
|
32
|
+
...require("@alwatr/nitrobase-types")
|
|
33
|
+
});
|
|
34
|
+
/*! For license information please see main.cjs.LEGAL.txt */
|
|
3
35
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.cjs.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/main.ts"],
|
|
4
|
-
"sourcesContent": ["
|
|
5
|
-
"mappings": ";
|
|
6
|
-
"names": [
|
|
4
|
+
"sourcesContent": ["import {packageTracer} from '@alwatr/nanolib';\n\nexport * from '@alwatr/nitrobase-engine';\nexport * from '@alwatr/nitrobase-reference';\nexport * from '@alwatr/nitrobase-helper';\nexport * from '@alwatr/nitrobase-types';\n\n__dev_mode__: packageTracer.add(__package_name__, __package_version__);\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,qBAA4B;AAE5B,yBAAc,qCAFd;AAGA,yBAAc,wCAHd;AAIA,yBAAc,qCAJd;AAKA,yBAAc,oCALd;AAOA,aAAc,8BAAc,IAAI,qBAAkB,OAAmB;",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|
package/dist/main.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAEA,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC"}
|
package/dist/main.mjs
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
/* @alwatr/nitrobase v7.
|
|
2
|
-
|
|
1
|
+
/* @alwatr/nitrobase v7.3.1 */
|
|
2
|
+
|
|
3
|
+
// src/main.ts
|
|
4
|
+
import { packageTracer } from "@alwatr/nanolib";
|
|
5
|
+
export * from "@alwatr/nitrobase-engine";
|
|
6
|
+
export * from "@alwatr/nitrobase-reference";
|
|
7
|
+
export * from "@alwatr/nitrobase-helper";
|
|
8
|
+
export * from "@alwatr/nitrobase-types";
|
|
9
|
+
__dev_mode__: packageTracer.add("@alwatr/nitrobase", "7.3.1");
|
|
10
|
+
/*! For license information please see main.mjs.LEGAL.txt */
|
|
3
11
|
//# sourceMappingURL=main.mjs.map
|
package/dist/main.mjs.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/main.ts"],
|
|
4
|
-
"sourcesContent": ["
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["import {packageTracer} from '@alwatr/nanolib';\n\nexport * from '@alwatr/nitrobase-engine';\nexport * from '@alwatr/nitrobase-reference';\nexport * from '@alwatr/nitrobase-helper';\nexport * from '@alwatr/nitrobase-types';\n\n__dev_mode__: packageTracer.add(__package_name__, __package_version__);\n"],
|
|
5
|
+
"mappings": ";;;AAAA,SAAQ,qBAAoB;AAE5B,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AAEd,aAAc,eAAc,IAAI,qBAAkB,OAAmB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nitrobase",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.1",
|
|
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,19 +60,19 @@
|
|
|
60
60
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@alwatr/
|
|
64
|
-
"@alwatr/nitrobase-
|
|
65
|
-
"@alwatr/nitrobase-
|
|
66
|
-
"@alwatr/nitrobase-
|
|
63
|
+
"@alwatr/nanolib": "^5.0.0",
|
|
64
|
+
"@alwatr/nitrobase-engine": "^7.3.1",
|
|
65
|
+
"@alwatr/nitrobase-helper": "^7.3.1",
|
|
66
|
+
"@alwatr/nitrobase-reference": "^7.3.1",
|
|
67
|
+
"@alwatr/nitrobase-types": "^7.3.1"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
|
-
"@alwatr/
|
|
70
|
-
"@alwatr/
|
|
71
|
-
"@alwatr/
|
|
72
|
-
"@alwatr/
|
|
73
|
-
"@
|
|
74
|
-
"
|
|
75
|
-
"typescript": "^5.6.2"
|
|
70
|
+
"@alwatr/nano-build": "^5.0.0",
|
|
71
|
+
"@alwatr/prettier-config": "^5.0.0",
|
|
72
|
+
"@alwatr/tsconfig-base": "^5.0.0",
|
|
73
|
+
"@alwatr/type-helper": "^5.0.0",
|
|
74
|
+
"@types/node": "^22.8.6",
|
|
75
|
+
"typescript": "^5.6.3"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "cbcfe6e61e21062570f91ae751e4fce3c232b003"
|
|
78
78
|
}
|