Skip to content

Commit 1f1ed1e

Browse files
committed
RELEASING: Releasing 2 package(s)
Releases: mdast2docx@1.4.2 @repo/shared@0.0.27
1 parent 4e3e427 commit 1f1ed1e

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

lib/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# mdast2docx
22

3+
## 1.4.2
4+
5+
### Patch Changes
6+
7+
- The following @m2d/\* dependencies were upgraded:
8+
9+
### @m2d/html: 1.1.8 → 1.1.10
10+
11+
**Patch Changes**
12+
- fix text alignment
13+
- Fix: fix an edge case where build might fail if the mermaid or similar plugin comes before htmlPlugin
14+
315
## 1.4.1
416

517
### Patch Changes

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "mdast2docx",
33
"author": "Mayank Kumar Chaudhari (https://mayank-chaudhari.vercel.app)",
44
"private": false,
5-
"version": "1.4.1",
5+
"version": "1.4.2",
66
"description": "Convert Markdown Abstract Syntax Tree (MDAST) to DOCX seamlessly. Supports footnotes, images, links, and customizable document properties.",
77
"license": "MPL-2.0",
88
"main": "./dist/index.js",

packages/shared/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @repo/shared
22

3+
## 0.0.27
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- mdast2docx@1.4.2
9+
310
## 0.0.26
411

512
### Patch Changes

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@repo/shared",
3-
"version": "0.0.26",
3+
"version": "0.0.27",
44
"private": true,
55
"sideEffects": false,
66
"main": "./dist/index.js",

scripts/generate-changeset.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,6 @@ function fetchText(url) {
5252
});
5353
}
5454

55-
function getLatestVersions(pkgs) {
56-
const versions = {};
57-
for (const pkg of pkgs) {
58-
try {
59-
const version = execSync(`npm view ${pkg} version`, { encoding: "utf-8" }).trim();
60-
versions[pkg] = version;
61-
} catch (e) {
62-
console.warn(`⚠️ Failed to get latest version of ${pkg}: ${e.message}`);
63-
}
64-
}
65-
return versions;
66-
}
67-
6855
// === Changelog Parsing & Formatting ===
6956
async function fetchChangelog(pkgName, fromVer, toVer) {
7057
const shortName = pkgName.replace("@m2d/", "");

0 commit comments

Comments
 (0)