diff --git a/.changeset/fix-missing-config-command-in-package.md b/.changeset/fix-missing-config-command-in-package.md deleted file mode 100644 index ad1a608..0000000 --- a/.changeset/fix-missing-config-command-in-package.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@labcatr/labcommitr": patch ---- - -fix: include config and commit command files in published package - -- Change package.json files field from directory to explicit file paths -- Add dist/cli/commands/config.js, config.d.ts, commit.js, and commit.d.ts to files array -- Fixes ERR_MODULE_NOT_FOUND error when using lab commands -- Config and commit commands were missing from published package causing runtime errors -- Resolves issue where command files exist but weren't included in npm package \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e5c8f28..a6cbd21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # @labcatr/labcommitr +## 0.4.2 + +### Patch Changes + +- 7d86240: fix: include config and commit command files in published package + - Change package.json files field from directory to explicit file paths + - Add dist/cli/commands/config.js, config.d.ts, commit.js, and commit.d.ts to files array + - Fixes ERR_MODULE_NOT_FOUND error when using lab commands + - Config and commit commands were missing from published package causing runtime errors + - Resolves issue where command files exist but weren't included in npm package + ## 0.4.1 ### Patch Changes diff --git a/package.json b/package.json index 1603413..95209ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@labcatr/labcommitr", - "version": "0.4.1", + "version": "0.4.2", "description": "Labcommitr is a solution for building standardized git commits, hassle-free!", "main": "dist/index.js", "scripts": {