markdown-to-adf 0.2.2 → 0.2.3
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 +2 -5
- package/package.json +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [Unreleased]
|
|
5
|
+
### [0.2.3](https://github.com/califlower/markdown-to-adf/compare/v0.2.2...v0.2.3) (2026-02-13)
|
|
9
6
|
|
|
10
7
|
## [0.2.2] - 2026-02-13
|
|
11
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-to-adf",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Convert Markdown to Atlassian Document Format (ADF) with context-aware presets for Jira",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
30
30
|
"format": "prettier --write .",
|
|
31
31
|
"format:check": "prettier --check .",
|
|
32
|
+
"release": "standard-version",
|
|
33
|
+
"release:major": "standard-version --release-as major",
|
|
34
|
+
"release:minor": "standard-version --release-as minor",
|
|
35
|
+
"release:patch": "standard-version --release-as patch",
|
|
32
36
|
"prepublishOnly": "npm run typecheck && npm run lint && npm run build && bun test"
|
|
33
37
|
},
|
|
34
38
|
"keywords": [
|
|
@@ -56,6 +60,7 @@
|
|
|
56
60
|
"eslint": "^8.57.0",
|
|
57
61
|
"eslint-config-prettier": "^9.1.0",
|
|
58
62
|
"prettier": "^3.2.5",
|
|
63
|
+
"standard-version": "^9.5.0",
|
|
59
64
|
"typescript": "^5.3.0"
|
|
60
65
|
},
|
|
61
66
|
"engines": {
|