@alwatr/nanotron 4.0.2 → 4.1.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 +6 -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,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
|
+
## [4.1.0](https://github.com/Alwatr/nanotron/compare/v4.0.2...v4.1.0) (2024-09-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* route handlers to use 'call' method for binding 'this' ([69517c1](https://github.com/Alwatr/nanotron/commit/69517c16909f8a9a4720c4863501b01e6ab0834e)) by @
|
|
11
|
+
|
|
6
12
|
## [4.0.2](https://github.com/Alwatr/nanotron/compare/v4.0.1...v4.0.2) (2024-09-14)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/dist/main.cjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/* @alwatr/nanotron v4.0
|
|
2
|
-
"use strict";var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var t=(o,a,e,m)=>{if(a&&typeof a=="object"||typeof a=="function")for(let r of l(a))!c.call(o,r)&&r!==e&&p(o,r,{get:()=>a[r],enumerable:!(m=f(a,r))||m.enumerable});return o},i=(o,a,e)=>(t(o,a,"default"),e&&t(e,a,"default"));var d=o=>t(p({},"__esModule",{value:!0}),o);var n={};module.exports=d(n);var _=require("@alwatr/logger");i(n,require("@alwatr/nanotron-api-server"),module.exports);(0,_.definePackage)("@alwatr/nanotron","4.0
|
|
1
|
+
/* @alwatr/nanotron v4.1.0 */
|
|
2
|
+
"use strict";var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var t=(o,a,e,m)=>{if(a&&typeof a=="object"||typeof a=="function")for(let r of l(a))!c.call(o,r)&&r!==e&&p(o,r,{get:()=>a[r],enumerable:!(m=f(a,r))||m.enumerable});return o},i=(o,a,e)=>(t(o,a,"default"),e&&t(e,a,"default"));var d=o=>t(p({},"__esModule",{value:!0}),o);var n={};module.exports=d(n);var _=require("@alwatr/logger");i(n,require("@alwatr/nanotron-api-server"),module.exports);(0,_.definePackage)("@alwatr/nanotron","4.1.0");0&&(module.exports={...require("@alwatr/nanotron-api-server")});
|
|
3
3
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/* @alwatr/nanotron v4.0
|
|
2
|
-
import{definePackage as a}from"@alwatr/logger";export*from"@alwatr/nanotron-api-server";a("@alwatr/nanotron","4.0
|
|
1
|
+
/* @alwatr/nanotron v4.1.0 */
|
|
2
|
+
import{definePackage as a}from"@alwatr/logger";export*from"@alwatr/nanotron-api-server";a("@alwatr/nanotron","4.1.0");
|
|
3
3
|
//# sourceMappingURL=main.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nanotron",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Elegant powerful nodejs server for nanoservice use cases, written in tiny TypeScript module.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@alwatr/logger": "^3.2.12",
|
|
61
|
-
"@alwatr/nanotron-api-server": "^4.0
|
|
61
|
+
"@alwatr/nanotron-api-server": "^4.1.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@alwatr/nano-build": "^1.3.8",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"jest": "^29.7.0",
|
|
70
70
|
"typescript": "^5.6.2"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "41e241d30aedf0fd886b2fb4d304acc2730da2c7"
|
|
73
73
|
}
|