Skip to content

Commit 517fe12

Browse files
chore(release): 1.28.0 [skip ci]
Includes auto-generated README and updated coverage badges ## [1.28.0](v1.27.0...v1.28.0) (2025-07-16) ### Features * add barrel command for themed content aggregation ([#30](#30)) ([f149927](f149927))
1 parent f149927 commit 517fe12

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.28.0](https://github.com/ExaDev/markmv/compare/v1.27.0...v1.28.0) (2025-07-16)
2+
3+
### Features
4+
5+
* add barrel command for themed content aggregation ([#30](https://github.com/ExaDev/markmv/issues/30)) ([f149927](https://github.com/ExaDev/markmv/commit/f149927405a17c564666b8f462f2086cfd851f62))
6+
17
## [1.27.0](https://github.com/ExaDev/markmv/compare/v1.26.2...v1.27.0) (2025-07-16)
28

39
### Features

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ npx markmv --help
2121
- 🔗 **Join multiple files** with conflict resolution
2222
- 🧠 **Merge content** with interactive conflict handling
2323
- 📚 **Generate indexes** for documentation organization
24-
- 🗂️ **Create barrel files** for themed content aggregation
2524
- 🌐 **Multiple access methods**: CLI, REST API, MCP, and programmatic
2625

2726
## 📦 Installation
@@ -53,9 +52,6 @@ npx markmv join intro.md setup.md usage.md --output complete-guide.md
5352

5453
# Generate documentation index
5554
npx markmv index --type links --strategy directory
56-
57-
# Generate barrel files for themed content aggregation
58-
npx markmv barrel --type hybrid --strategy metadata --generate-toc
5955
```
6056

6157
## 🌐 Access Methods
@@ -119,7 +115,7 @@ Once configured, Claude can use these markmv tools:
119115
- **`move_files`** - Move multiple files in batch
120116
- **`validate_operation`** - Check for broken links
121117

122-
*Note: Additional tools (split, join, merge, convert, index, barrel) will be added in future releases.*
118+
*Note: Additional tools (split, join, merge, convert, index) will be added in future releases.*
123119

124120
### Example Usage with Claude
125121

@@ -197,7 +193,7 @@ multiple index types including links, imports, embeds, and hybrid modes.
197193
function createMarkMv(): FileOperations;
198194
```
199195

200-
Defined in: [index.ts:148](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L148)
196+
Defined in: [index.ts:149](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L149)
201197

202198
Main entry point for the markmv library
203199

@@ -230,7 +226,7 @@ function moveFile(
230226
options: MoveOperationOptions): Promise<OperationResult>;
231227
```
232228

233-
Defined in: [index.ts:172](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L172)
229+
Defined in: [index.ts:173](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L173)
234230

235231
Convenience function for moving a single markdown file
236232

@@ -278,7 +274,7 @@ Promise resolving to operation result
278274
function moveFiles(moves: object[], options: MoveOperationOptions): Promise<OperationResult>;
279275
```
280276

281-
Defined in: [index.ts:201](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L201)
277+
Defined in: [index.ts:202](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L202)
282278

283279
Convenience function for moving multiple markdown files
284280

@@ -325,7 +321,7 @@ function validateOperation(result: OperationResult): Promise<{
325321
}>;
326322
```
327323

328-
Defined in: [index.ts:230](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L230)
324+
Defined in: [index.ts:231](https://github.com/ExaDev/markmv/blob/main/src/index.ts#L231)
329325

330326
Convenience function for validating markdown file operations
331327

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markmv",
3-
"version": "1.27.0",
3+
"version": "1.28.0",
44
"description": "TypeScript CLI for markdown file operations with intelligent link refactoring",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)