@alwatr/nanotron 4.9.3 → 4.9.4

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 CHANGED
@@ -1,8 +1,22 @@
1
1
  # Change Log
2
+ # Changelog
3
+
4
+ All notable changes to this project will be documented in this file.
2
5
 
3
6
  All notable changes to this project will be documented in this file.
4
7
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
8
 
9
+ ## [4.9.4](https://github.com/Alwatr/nanotron/compare/v4.9.3...v4.9.4) (2025-08-23)
10
+
11
+ ### 🔨 Code Refactoring
12
+
13
+ * reorganize package.json files for consistency and clarity ([bde116e](https://github.com/Alwatr/nanotron/commit/bde116e21f9d9bd6084940e257438916d2c3d312)) by @alimd
14
+
15
+ ### 🔗 Dependencies update
16
+
17
+ * downgrade @types/node version to 22.17.2 in all package.json files ([4f01e14](https://github.com/Alwatr/nanotron/commit/4f01e1408d8d0954865eb9d20f90178f13e98719)) by @alimd
18
+ * update dependencies for eslint-config, lerna-lite, typescript, and nanolib ([de16a71](https://github.com/Alwatr/nanotron/commit/de16a718bb1c0fa569d39c824ec39a1e67ef8dfe)) by @alimd
19
+
6
20
  ## [4.9.3](https://github.com/Alwatr/nanotron/compare/v4.9.2...v4.9.3) (2025-07-23)
7
21
 
8
22
  **Note:** Version bump only for package @alwatr/nanotron
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/nanotron v4.9.3 */
1
+ /* @alwatr/nanotron v4.9.4 */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -22,7 +22,7 @@ var import_nanolib = require("@alwatr/nanolib");
22
22
  __reExport(main_exports, require("@alwatr/nanotron-api-server"), module.exports);
23
23
  __reExport(main_exports, require("@alwatr/crypto"), module.exports);
24
24
  __reExport(main_exports, require("@alwatr/pre-handlers"), module.exports);
25
- __dev_mode__: import_nanolib.packageTracer.add("@alwatr/nanotron", "4.9.3");
25
+ __dev_mode__: import_nanolib.packageTracer.add("@alwatr/nanotron", "4.9.4");
26
26
  // Annotate the CommonJS export names for ESM import in node:
27
27
  0 && (module.exports = {
28
28
  ...require("@alwatr/nanotron-api-server"),
package/dist/main.mjs CHANGED
@@ -1,9 +1,9 @@
1
- /* @alwatr/nanotron v4.9.3 */
1
+ /* @alwatr/nanotron v4.9.4 */
2
2
 
3
3
  // src/main.ts
4
4
  import { packageTracer } from "@alwatr/nanolib";
5
5
  export * from "@alwatr/nanotron-api-server";
6
6
  export * from "@alwatr/crypto";
7
7
  export * from "@alwatr/pre-handlers";
8
- __dev_mode__: packageTracer.add("@alwatr/nanotron", "4.9.3");
8
+ __dev_mode__: packageTracer.add("@alwatr/nanotron", "4.9.4");
9
9
  //# sourceMappingURL=main.mjs.map
package/package.json CHANGED
@@ -1,20 +1,24 @@
1
1
  {
2
2
  "name": "@alwatr/nanotron",
3
- "version": "4.9.3",
4
3
  "description": "Nanotron: Your Lightweight, High-Performance Micro/Nano Service Framework. Nanotron is designed for building blazingly fast and efficient microservices and APIs. Its minimalist approach and focus on performance make it ideal for resource-constrained environments and scenarios where every millisecond counts.",
4
+ "version": "4.9.4",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
- "keywords": [
7
- "server",
8
- "nanoservice",
9
- "api",
10
- "typescript",
11
- "esm",
12
- "alwatr"
13
- ],
14
- "type": "module",
15
- "main": "./dist/main.cjs",
16
- "module": "./dist/main.mjs",
17
- "types": "./dist/main.d.ts",
6
+ "bugs": "https://github.com/Alwatr/nanotron/issues",
7
+ "dependencies": {
8
+ "@alwatr/crypto": "^4.9.4",
9
+ "@alwatr/nanolib": "^5.6.6",
10
+ "@alwatr/nanotron-api-server": "^4.9.4",
11
+ "@alwatr/pre-handlers": "^4.9.4"
12
+ },
13
+ "devDependencies": {
14
+ "@alwatr/nano-build": "^5.5.4",
15
+ "@alwatr/prettier-config": "^5.0.0",
16
+ "@alwatr/tsconfig-base": "^5.0.0",
17
+ "@alwatr/type-helper": "^5.4.2",
18
+ "@types/node": "^22.17.2",
19
+ "jest": "^30.0.5",
20
+ "typescript": "^5.9.2"
21
+ },
18
22
  "exports": {
19
23
  ".": {
20
24
  "types": "./dist/main.d.ts",
@@ -22,11 +26,23 @@
22
26
  "require": "./dist/main.cjs"
23
27
  }
24
28
  },
25
- "license": "AGPL-3.0-only",
26
29
  "files": [
27
30
  "**/*.{js,mjs,cjs,map,d.ts,html,md}",
28
31
  "!demo/**/*"
29
32
  ],
33
+ "homepage": "https://github.com/Alwatr/nanotron#readme",
34
+ "keywords": [
35
+ "alwatr",
36
+ "api",
37
+ "esm",
38
+ "nanoservice",
39
+ "server",
40
+ "typescript"
41
+ ],
42
+ "license": "AGPL-3.0-only",
43
+ "main": "./dist/main.cjs",
44
+ "module": "./dist/main.mjs",
45
+ "prettier": "@alwatr/prettier-config",
30
46
  "publishConfig": {
31
47
  "access": "public"
32
48
  },
@@ -35,41 +51,23 @@
35
51
  "url": "https://github.com/Alwatr/nanotron",
36
52
  "directory": "packages/nanotron"
37
53
  },
38
- "homepage": "https://github.com/Alwatr/nanotron#readme",
39
- "bugs": {
40
- "url": "https://github.com/Alwatr/nanotron/issues"
41
- },
42
- "prettier": "@alwatr/prettier-config",
43
54
  "scripts": {
44
55
  "b": "yarn run build",
45
- "t": "yarn run test",
46
- "w": "yarn run watch",
47
- "c": "yarn run clean",
48
- "cb": "yarn run clean && yarn run build",
49
- "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
50
56
  "build": "yarn run build:ts & yarn run build:es",
51
57
  "build:es": "nano-build --preset=module",
52
58
  "build:ts": "tsc --build",
59
+ "c": "yarn run clean",
60
+ "cb": "yarn run clean && yarn run build",
61
+ "clean": "rm -rfv dist *.tsbuildinfo",
62
+ "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
63
+ "t": "yarn run test",
53
64
  "test": "NODE_OPTIONS=\"$NODE_OPTIONS --enable-source-maps --experimental-vm-modules\" jest",
65
+ "w": "yarn run watch",
54
66
  "watch": "yarn run watch:ts & yarn run watch:es",
55
67
  "watch:es": "yarn run build:es --watch",
56
- "watch:ts": "yarn run build:ts --watch --preserveWatchOutput",
57
- "clean": "rm -rfv dist *.tsbuildinfo"
58
- },
59
- "dependencies": {
60
- "@alwatr/crypto": "^4.9.3",
61
- "@alwatr/nanolib": "^5.6.5",
62
- "@alwatr/nanotron-api-server": "^4.9.3",
63
- "@alwatr/pre-handlers": "^4.9.3"
64
- },
65
- "devDependencies": {
66
- "@alwatr/nano-build": "^5.5.3",
67
- "@alwatr/prettier-config": "^5.0.0",
68
- "@alwatr/tsconfig-base": "^5.0.0",
69
- "@alwatr/type-helper": "^5.4.1",
70
- "@types/node": "^24.1.0",
71
- "jest": "^30.0.5",
72
- "typescript": "^5.8.3"
68
+ "watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
73
69
  },
74
- "gitHead": "17852256f4aab632c64437d1c50c64d02ee108b9"
70
+ "type": "module",
71
+ "types": "./dist/main.d.ts",
72
+ "gitHead": "d225632fac937bbf0faeb6db7eb9796e6ff0f00a"
75
73
  }