@alwatr/nanotron 9.31.0 → 9.33.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/dist/dev/main.js +5 -0
- package/dist/dev/main.js.map +10 -0
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/package.json +14 -11
package/dist/dev/main.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/main.ts"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"export * from '@alwatr/nanotron-api-server';\nexport * from '@alwatr/crypto';\nexport * from '@alwatr/pre-handlers';\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": ";AAAA,yCACA,4BACA",
|
|
8
|
+
"debugId": "1D9E7A94CC85EB9D64756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
package/dist/main.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* 📦 @alwatr/nanotron v9.
|
|
1
|
+
/* 📦 @alwatr/nanotron v9.33.1 */
|
|
2
2
|
export*from"@alwatr/nanotron-api-server";export*from"@alwatr/crypto";export*from"@alwatr/pre-handlers";
|
|
3
3
|
|
|
4
|
-
//# debugId=
|
|
4
|
+
//# debugId=1D9E7A94CC85EB9D64756E2164756E21
|
|
5
5
|
//# sourceMappingURL=main.js.map
|
package/dist/main.js.map
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
"export * from '@alwatr/nanotron-api-server';\nexport * from '@alwatr/crypto';\nexport * from '@alwatr/pre-handlers';\n"
|
|
6
6
|
],
|
|
7
7
|
"mappings": ";AAAA,yCACA,4BACA",
|
|
8
|
-
"debugId": "
|
|
8
|
+
"debugId": "1D9E7A94CC85EB9D64756E2164756E21",
|
|
9
9
|
"names": []
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nanotron",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.33.1",
|
|
4
4
|
"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.",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
|
|
@@ -15,37 +15,40 @@
|
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
17
|
"types": "./dist/main.d.ts",
|
|
18
|
+
"development": "./dist/dev/main.js",
|
|
18
19
|
"import": "./dist/main.js",
|
|
19
20
|
"default": "./dist/main.js"
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
23
|
"sideEffects": false,
|
|
23
24
|
"dependencies": {
|
|
24
|
-
"@alwatr/crypto": "9.
|
|
25
|
-
"@alwatr/nanotron-api-server": "9.
|
|
26
|
-
"@alwatr/pre-handlers": "9.
|
|
25
|
+
"@alwatr/crypto": "9.33.1",
|
|
26
|
+
"@alwatr/nanotron-api-server": "9.33.1",
|
|
27
|
+
"@alwatr/pre-handlers": "9.33.1"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
|
-
"@alwatr/nano-build": "9.
|
|
30
|
-
"@alwatr/standard": "9.
|
|
31
|
-
"@alwatr/type-helper": "9.
|
|
30
|
+
"@alwatr/nano-build": "9.33.1",
|
|
31
|
+
"@alwatr/standard": "9.33.0",
|
|
32
|
+
"@alwatr/type-helper": "9.33.1",
|
|
32
33
|
"@types/node": "^24.13.1",
|
|
33
34
|
"typescript": "^6.0.3"
|
|
34
35
|
},
|
|
35
36
|
"scripts": {
|
|
36
37
|
"b": "bun run build",
|
|
37
38
|
"build": "bun run build:ts && bun run build:es",
|
|
38
|
-
"build:es": "
|
|
39
|
+
"build:es": "bun run build:es:dev && bun run build:es:prod",
|
|
40
|
+
"build:es:dev": "nano-build --preset=module --outdir=dist/dev src/main.ts",
|
|
41
|
+
"build:es:prod": "NODE_ENV=production nano-build --preset=module --outdir=dist src/main.ts",
|
|
39
42
|
"build:ts": "tsc --build",
|
|
40
43
|
"cl": "bun run clean",
|
|
41
44
|
"clean": "rm -rfv dist *.tsbuildinfo",
|
|
42
45
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
43
46
|
"lint": "eslint src/ --ext .ts",
|
|
44
47
|
"t": "bun run test",
|
|
45
|
-
"test": "
|
|
48
|
+
"test": "bun test",
|
|
46
49
|
"w": "bun run watch",
|
|
47
50
|
"watch": "bun run watch:ts & bun run watch:es",
|
|
48
|
-
"watch:es": "bun run build:es --watch",
|
|
51
|
+
"watch:es": "bun run build:es:dev --watch",
|
|
49
52
|
"watch:ts": "bun run build:ts --watch --preserveWatchOutput"
|
|
50
53
|
},
|
|
51
54
|
"files": [
|
|
@@ -66,5 +69,5 @@
|
|
|
66
69
|
"server",
|
|
67
70
|
"typescript"
|
|
68
71
|
],
|
|
69
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "84fba5b7b428188be17aaaaf062b0b7eaae96555"
|
|
70
73
|
}
|