Skip to content

Commit caa73f6

Browse files
authored
Merge pull request #41 from Telefonica/release
Release: markdown-confluence-sync-v1.2.1
2 parents 710f3c9 + 8eef02f commit caa73f6

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

components/markdown-confluence-sync/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
#### Deprecated
1212
#### Removed
1313

14-
## [1.2.0] - 2025-03-20
14+
## [1.2.1] - 2025-03-20
15+
16+
### Fixed
17+
18+
* fix: Add `ignore` option to the TypeScript typings
19+
20+
## [1.2.0] - 2025-03-19
1521

1622
### Added
1723

components/markdown-confluence-sync/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tid-xcut/markdown-confluence-sync",
33
"description": "Creates/updates/deletes Confluence pages based on markdown files in a directory. Supports Mermaid diagrams and per-page configuration using frontmatter metadata. Works great with Docusaurus",
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"license": "Apache-2.0",
66
"author": "Telefónica Innovación Digital",
77
"repository": {

components/markdown-confluence-sync/src/lib/MarkdownConfluenceSync.types.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ declare global {
5656
/** Metadata for specific files */
5757
filesMetadata?: FilesMetadata;
5858

59+
/** Patterns of files to ignore */
60+
ignore?: FilesPattern[];
61+
62+
/** Hook enabling to modify the content of files before processing them */
5963
preprocessor?: ContentPreprocessor;
6064
}
6165
}

0 commit comments

Comments
 (0)