Skip to content

Commit 6927bc8

Browse files
[ci] release (#34)
2 parents 16b3f59 + d381e1b commit 6927bc8

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

.changeset/fix-missing-config-command-in-package.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @labcatr/labcommitr
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- 7d86240: fix: include config command files in published package
8+
- Change package.json files field from directory to explicit file paths
9+
- Add dist/cli/commands/config.js and config.d.ts to files array
10+
- Fixes ERR_MODULE_NOT_FOUND error when using lab commands
11+
- Config command was missing from published package causing runtime errors
12+
- Resolves issue where config.js file exists but wasn't included in npm package
13+
314
## 0.4.0
415

516
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labcatr/labcommitr",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Labcommitr is a solution for building standardized git commits, hassle-free!",
55
"main": "dist/index.js",
66
"scripts": {

src/cli/commands/commit/editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function detectEditor(): string | null {
6161
if (envEditor.includes("/") || envEditor.includes("\\")) {
6262
try {
6363
accessSync(envEditor, constants.F_OK);
64-
return envEditor.trim();
64+
return envEditor.trim();
6565
} catch {
6666
// Path doesn't exist, try to find it as a command
6767
}

0 commit comments

Comments
 (0)