rajt 0.0.80 → 0.0.82

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rajt",
3
3
  "description": "A serverless bundler layer, fully typed for AWS Lambda (Node.js and LLRT) and Cloudflare Workers.",
4
- "version": "0.0.80",
4
+ "version": "0.0.82",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
7
7
  "bin": {
@@ -52,6 +52,7 @@
52
52
  "hono": "^4.11.7",
53
53
  "hono-openapi": "^1.2.0",
54
54
  "miniflare": "^4.20251217.0",
55
+ "quansync": "^0.2.11",
55
56
  "tiny-glob": "^0.2",
56
57
  "tsx": "^4.19.3",
57
58
  "ua-parser-js": "^2.0.8",
@@ -282,7 +282,7 @@ function getAssetChangeMessage(
282
282
 
283
283
  export async function watch(cb: (e: ChokidarEventName | string, file: string) => Promise<void>) {
284
284
  const codeWatcher = chokidar.watch([
285
- join(_root, '{actions,features,routes,configs,enums,locales,middlewares,models,utils}/**/*.ts'),
285
+ join(_root, '{actions,features,routes,configs,enums,libs,locales,middlewares,models,utils}/**/*.ts'),
286
286
  join(_root, '.env.dev'),
287
287
  join(_root, '.env.prod'),
288
288
  join(_root, 'package.json'),