diff --git a/.changeset/dev-bundle-option.md b/.changeset/dev-bundle-option.md deleted file mode 100644 index fbc6eec..0000000 --- a/.changeset/dev-bundle-option.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@djs-core/dev": patch ---- - -Add bundle option handling to the build command and improve generated entry safety. - -This change updates the build flow to support bundling user config at build time, -copies `config.json` to the output when appropriate, and tightens runtime -assertions in the generated entry file. diff --git a/bun.lock b/bun.lock index d0892f3..267531f 100644 --- a/bun.lock +++ b/bun.lock @@ -30,7 +30,7 @@ }, "packages/dev": { "name": "@djs-core/dev", - "version": "5.2.2", + "version": "5.2.3", "bin": { "djs-core": "dist/index.js", }, diff --git a/packages/dev/CHANGELOG.md b/packages/dev/CHANGELOG.md index 17ddf45..a14d161 100644 --- a/packages/dev/CHANGELOG.md +++ b/packages/dev/CHANGELOG.md @@ -1,5 +1,15 @@ # @djs-core/dev +## 5.2.3 + +### Patch Changes + +- e136a99: Add bundle option handling to the build command and improve generated entry safety. + + This change updates the build flow to support bundling user config at build time, + copies `config.json` to the output when appropriate, and tightens runtime + assertions in the generated entry file. + ## 5.2.2 ### Patch Changes diff --git a/packages/dev/package.json b/packages/dev/package.json index b30dbcb..66b8ac1 100644 --- a/packages/dev/package.json +++ b/packages/dev/package.json @@ -1,6 +1,6 @@ { "name": "@djs-core/dev", - "version": "5.2.2", + "version": "5.2.3", "description": "Development CLI tools for djs-core Discord bot framework", "type": "module", "types": "./dist/index.d.ts",