markdown-ai-rewriter 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.2.2] - 2026-03-27
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- README:移除文末误输入字符,恢复文件末尾换行。
|
|
9
|
+
|
|
10
|
+
## [0.2.1] - 2026-03-27
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- `package.json`: apply `npm pkg fix` — normalized `bin` paths (`dist/cli.js`), `repository.url` (`git+https://...`). No runtime code changes.
|
|
14
|
+
|
|
5
15
|
## [0.2.0] - 2026-03-27
|
|
6
16
|
|
|
7
17
|
### Added
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-ai-rewriter",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "AI-powered Markdown content rewriter that preserves document structure",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"markdown-ai-rewrite": "
|
|
9
|
-
"md-rewrite": "
|
|
8
|
+
"markdown-ai-rewrite": "dist/cli.js",
|
|
9
|
+
"md-rewrite": "dist/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
|
37
|
-
"url": "https://github.com/sipingme/markdown-ai-rewriter.git"
|
|
37
|
+
"url": "git+https://github.com/sipingme/markdown-ai-rewriter.git"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/jest": "^29.5.0",
|