Skip to content

Commit fd58104

Browse files
committed
released v4.1.1 #90
1 parent 45cdc7b commit fd58104

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.1.0",
2+
"version": "4.1.1",
33
"packages": [
44
"packages/**"
55
]

packages/action/dist/action.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167617,6 +167617,7 @@ function utils_formatConfig(opts) {
167617167617
options['github-corners'] = mth['github-corners'];
167618167618
}
167619167619
} else {
167620+
options.reurls = _objectSpread2(_objectSpread2({}, options.reurls), pgkData.reurls);
167620167621
options.document = _objectSpread2(_objectSpread2({}, options.document), pgkData.document);
167621167622
}
167622167623
if (pgkData.name && !options.document.title) {

packages/action/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "action",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"engines": {
55
"node": ">=16"
66
},
77
"dependencies": {
88
"@actions/core": "~1.10.0",
9-
"markdown-to-html-cli": "^4.1.0"
9+
"markdown-to-html-cli": "^4.1.1"
1010
}
1111
}

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdown-to-html-cli",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"license": "MIT",
55
"description": "Command line tool generates markdown as html.",
66
"homepage": "https://jaywcjlove.github.io/markdown-to-html-cli",

packages/cli/src/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export function formatConfig(opts: Options) {
2222
options['github-corners'] = mth['github-corners'];
2323
}
2424
} else {
25+
options.reurls = { ...options.reurls, ...pgkData.reurls }
2526
options.document = { ...options.document, ...pgkData.document }
2627
}
2728
if (pgkData.name && !options.document.title) {

0 commit comments

Comments
 (0)