@alwatr/nitrobase-helper 7.4.0 → 7.5.0
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 +4 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @alwatr/nitrobase-helper
|
|
9
|
+
|
|
6
10
|
## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08)
|
|
7
11
|
|
|
8
12
|
### Dependencies update
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/nitrobase-helper v7.
|
|
1
|
+
/* @alwatr/nitrobase-helper v7.5.0 */
|
|
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
|
module.exports = __toCommonJS(main_exports);
|
|
28
28
|
var import_nanolib = require("@alwatr/nanolib");
|
|
29
29
|
var import_nitrobase_types = require("@alwatr/nitrobase-types");
|
|
30
|
-
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/nitrobase-helper", "7.
|
|
30
|
+
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/nitrobase-helper", "7.5.0");
|
|
31
31
|
function getStoreId(storeId) {
|
|
32
32
|
let id = storeId.region + "/" + storeId.name;
|
|
33
33
|
if (storeId.ownerId !== void 0) {
|
package/dist/main.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/* @alwatr/nitrobase-helper v7.
|
|
1
|
+
/* @alwatr/nitrobase-helper v7.5.0 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { flatString, packageTracer } from "@alwatr/nanolib";
|
|
5
5
|
import { StoreFileExtension } from "@alwatr/nitrobase-types";
|
|
6
|
-
__dev_mode__: packageTracer.add("@alwatr/nitrobase-helper", "7.
|
|
6
|
+
__dev_mode__: packageTracer.add("@alwatr/nitrobase-helper", "7.5.0");
|
|
7
7
|
function getStoreId(storeId) {
|
|
8
8
|
let id = storeId.region + "/" + storeId.name;
|
|
9
9
|
if (storeId.ownerId !== void 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nitrobase-helper",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"description": "Extremely fast and compact JSON-based database that operates in memory, includes a JSON file backup, and serve over the highly accelerated Nginx.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@alwatr/nanolib": "^5.2.1",
|
|
64
|
-
"@alwatr/nitrobase-types": "^7.
|
|
64
|
+
"@alwatr/nitrobase-types": "^7.5.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@alwatr/nano-build": "^5.0.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"@types/node": "^22.9.0",
|
|
72
72
|
"typescript": "^5.6.3"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "cb82a2f1ffa090db44cf7476fe68a2e4d8b0f67a"
|
|
75
75
|
}
|