Skip to content

Commit

Permalink
released v4.1.1 #90
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Nov 21, 2024
1 parent 45cdc7b commit fd58104
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.1.0",
"version": "4.1.1",
"packages": [
"packages/**"
]
Expand Down
1 change: 1 addition & 0 deletions packages/action/dist/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -167617,6 +167617,7 @@ function utils_formatConfig(opts) {
options['github-corners'] = mth['github-corners'];
}
} else {
options.reurls = _objectSpread2(_objectSpread2({}, options.reurls), pgkData.reurls);
options.document = _objectSpread2(_objectSpread2({}, options.document), pgkData.document);
}
if (pgkData.name && !options.document.title) {
Expand Down
4 changes: 2 additions & 2 deletions packages/action/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "action",
"version": "4.1.0",
"version": "4.1.1",
"engines": {
"node": ">=16"
},
"dependencies": {
"@actions/core": "~1.10.0",
"markdown-to-html-cli": "^4.1.0"
"markdown-to-html-cli": "^4.1.1"
}
}
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdown-to-html-cli",
"version": "4.1.0",
"version": "4.1.1",
"license": "MIT",
"description": "Command line tool generates markdown as html.",
"homepage": "https://jaywcjlove.github.io/markdown-to-html-cli",
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export function formatConfig(opts: Options) {
options['github-corners'] = mth['github-corners'];
}
} else {
options.reurls = { ...options.reurls, ...pgkData.reurls }
options.document = { ...options.document, ...pgkData.document }
}
if (pgkData.name && !options.document.title) {
Expand Down

0 comments on commit fd58104

Please sign in to comment.