Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .changeset/fix-missing-config-command-in-package.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
"@labcatr/labcommitr": patch
---

fix: include config command files in published package

- Change package.json files field from directory to explicit file paths
- Add dist/cli/commands/config.js and config.d.ts to files array
- Fixes ERR_MODULE_NOT_FOUND error when using lab commands
- Config command was missing from published package causing runtime errors
- Resolves issue where config.js file exists but wasn't included in npm package

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
"dist/cli/program.js",
"dist/cli/program.d.ts",
"dist/cli/commands/commit",
"dist/cli/commands/config",
"dist/cli/commands/config.js",
"dist/cli/commands/config.d.ts",
"dist/cli/commands/init",
"dist/cli/commands/preview",
"dist/cli/commands/revert",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/commit/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function detectEditor(): string | null {
if (envEditor.includes("/") || envEditor.includes("\\")) {
try {
accessSync(envEditor, constants.F_OK);
return envEditor.trim();
return envEditor.trim();
} catch {
// Path doesn't exist, try to find it as a command
}
Expand Down