fix: Included templates with package a1658acb
Currently the CLI dist does not include the templates needed for options
like react router, hono rpc, etc. Including them should solve the issue.
Steve · 2025-08-09 23:10 1 file(s) · +2 −1
package.json +2 −1
9 9
		"create-bhvr": "./dist/index.js"
10 10
	},
11 11
	"files": [
12 -
		"dist"
12 +
		"dist",
13 +
		"src/templates"
13 14
	],
14 15
	"scripts": {
15 16
		"build": "bun build src/index.ts --outdir dist --target node",