@alwatr/nitrobase-helper 7.2.0 → 7.2.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 +11 -0
- package/README.md +4 -4
- package/dist/main.cjs +1 -1
- package/dist/main.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.2.1](https://github.com/Alwatr/nitrobase/compare/v7.2.0...v7.2.1) (2024-09-29)
|
|
7
|
+
|
|
8
|
+
### Miscellaneous Chores
|
|
9
|
+
|
|
10
|
+
* **deps-dev:** bump @types/node in the development-dependencies group ([9b146d2](https://github.com/Alwatr/nitrobase/commit/9b146d2f6cf7d1d79a2a6f46a5e8f50e7fb2ac75)) by @dependabot[bot]
|
|
11
|
+
* **helper:** change the license to AGPL-3.0 ([1fe19df](https://github.com/Alwatr/nitrobase/commit/1fe19dfdb234bf4510c1e62453beccb767d373e5)) by @ArmanAsadian
|
|
12
|
+
|
|
13
|
+
### Dependencies update
|
|
14
|
+
|
|
15
|
+
* update ([90a0fe1](https://github.com/Alwatr/nitrobase/commit/90a0fe146eb703c183c116776d7c5748918282da)) by @
|
|
16
|
+
|
|
6
17
|
## [7.2.0](https://github.com/Alwatr/nitrobase/compare/v7.1.1...v7.2.0) (2024-09-24)
|
|
7
18
|
|
|
8
19
|
### Code Refactoring
|
package/README.md
CHANGED
|
@@ -80,10 +80,10 @@ The following companies, organizations, and individuals support Nitrobase ongoin
|
|
|
80
80
|
|
|
81
81
|
[](https://exirstudio.com)
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
### Contributing
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
### License
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
This project is licensed under the [AGPL-3.0 License](LICENSE).
|
package/dist/main.cjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/* @alwatr/nitrobase-helper v7.2.
|
|
1
|
+
/* @alwatr/nitrobase-helper v7.2.1 */
|
|
2
2
|
"use strict";var o=Object.defineProperty;var l=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var p=Object.prototype.hasOwnProperty;var m=(e,n)=>{for(var r in n)o(e,r,{get:n[r],enumerable:!0})},u=(e,n,r,d)=>{if(n&&typeof n=="object"||typeof n=="function")for(let i of g(n))!p.call(e,i)&&i!==r&&o(e,i,{get:()=>n[i],enumerable:!(d=l(n,i))||d.enumerable});return e};var w=e=>u(o({},"__esModule",{value:!0}),e);var x={};m(x,{getStoreId:()=>F,getStorePath:()=>I});module.exports=w(x);var t=require("@alwatr/flat-string"),f=require("@alwatr/nitrobase-types");function F(e){let n=e.region+"/"+e.name;return e.ownerId!==void 0&&(n+="/"+e.ownerId),(0,t.flatString)(n)}function I(e){let n=e.region;return e.ownerId!==void 0&&(n+="/"+e.ownerId.slice(0,3)+"/"+e.ownerId),n+=`/${e.name}.${e.type}.${e.extension??f.StoreFileExtension.Json}`,(0,t.flatString)(n)}0&&(module.exports={getStoreId,getStorePath});
|
|
3
3
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/* @alwatr/nitrobase-helper v7.2.
|
|
1
|
+
/* @alwatr/nitrobase-helper v7.2.1 */
|
|
2
2
|
import{flatString as i}from"@alwatr/flat-string";import{StoreFileExtension as r}from"@alwatr/nitrobase-types";function d(e){let n=e.region+"/"+e.name;return e.ownerId!==void 0&&(n+="/"+e.ownerId),i(n)}function f(e){let n=e.region;return e.ownerId!==void 0&&(n+="/"+e.ownerId.slice(0,3)+"/"+e.ownerId),n+=`/${e.name}.${e.type}.${e.extension??r.Json}`,i(n)}export{d as getStoreId,f as getStorePath};
|
|
3
3
|
//# sourceMappingURL=main.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nitrobase-helper",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.1",
|
|
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": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"require": "./dist/main.cjs"
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
|
-
"license": "
|
|
30
|
+
"license": "AGPL-3.0-only",
|
|
31
31
|
"files": [
|
|
32
32
|
"**/*.{js,mjs,cjs,map,d.ts,html,md}",
|
|
33
33
|
"!demo/**/*"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@alwatr/flat-string": "^1.0.23",
|
|
64
|
-
"@alwatr/nitrobase-types": "^7.2.
|
|
64
|
+
"@alwatr/nitrobase-types": "^7.2.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@alwatr/logger": "^3.2.14",
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"@alwatr/prettier-config": "^1.0.4",
|
|
70
70
|
"@alwatr/tsconfig-base": "^1.2.0",
|
|
71
71
|
"@alwatr/wait": "^1.1.16",
|
|
72
|
-
"@types/node": "^22.
|
|
72
|
+
"@types/node": "^22.7.4",
|
|
73
73
|
"typescript": "^5.6.2"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "519fd869ca85fe593f863b29cc945554f28dc870"
|
|
76
76
|
}
|