Skip to content

Commit 1cc5431

Browse files
Merge pull request #47 from darkmavis1980/bugfix/fix-replace-flag
Bugfix/fix replace flag
2 parents e315cd0 + 8a9824d commit 1cc5431

File tree

5 files changed

+3792
-1945
lines changed

5 files changed

+3792
-1945
lines changed

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ module.exports = {
77
],
88
rules: {
99
'no-console': 'off',
10-
'@typescript-eslint/no-explicit-any': 'off',
1110
},
1211
parser: '@typescript-eslint/parser',
1312
plugins: [

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# Changelog
22

3-
## [v0.12.2](https://github.com/darkmavis1980/markdown-index-generator/compare/v0.12.1...v0.12.2)
3+
## [v0.12.4](https://github.com/darkmavis1980/markdown-index-generator/compare/v0.12.3...v0.12.4)
4+
5+
### Commits
6+
7+
- Removed settings from auto-changelog [`8769fd9`](https://github.com/darkmavis1980/markdown-index-generator/commit/8769fd9b28ec4bb48c070c2e4a80f6ce82afa3cb)
8+
9+
## [v0.12.3](https://github.com/darkmavis1980/markdown-index-generator/compare/v0.12.2...v0.12.3) - 2022-12-06
10+
11+
### Merged
12+
13+
- Bugfix/fix coverage [`#46`](https://github.com/darkmavis1980/markdown-index-generator/pull/46)
14+
- Bugfix/code cleanups [`#45`](https://github.com/darkmavis1980/markdown-index-generator/pull/45)
15+
16+
### Commits
17+
18+
- Fixed issue with flag [`f21d3a7`](https://github.com/darkmavis1980/markdown-index-generator/commit/f21d3a793bf27010d7dab6e2d1b83bbacc362ded)
19+
20+
## [v0.12.2](https://github.com/darkmavis1980/markdown-index-generator/compare/v0.12.1...v0.12.2) - 2022-12-03
421

522
### Commits
623

bin/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ program
1010
.option('-o, --output <outputFile>', 'Output will be saved in the defined file')
1111
.option('-d, --depth <depth>', 'Depth of the headings to parse, 4 means \'till h4\'', 4)
1212
.option('-t, --title <title>', 'Title to add on top of the index, by default is \'## Index\'')
13-
.option('-r, --replace <replace>', 'Add the index to the source file', false)
13+
.option('-r, --replace', 'Add the index to the source file', false)
1414
.action(MarkdownIndexGenerator);
1515

1616
program.parse();

0 commit comments

Comments
 (0)