-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Conventional Changelog Action
committed
Dec 16, 2024
1 parent
b573167
commit 0ca22cc
Showing
2 changed files
with
77 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 1.1.0 (2024-12-16) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* heading & paragraph rendering ([f47da44](https://github.com/JeelGajera/jspdf-md-renderer/commit/f47da44e5b96d677e63b58c90bdf17e03031ab88)) | ||
* list & listitem recursive rendering ([74f06ed](https://github.com/JeelGajera/jspdf-md-renderer/commit/74f06edc5aa9a4e8bb06231b6208ced7bc9cb121)) | ||
|
||
|
||
### Features | ||
|
||
* add example vite project & refactored package.json ([685b5e5](https://github.com/JeelGajera/jspdf-md-renderer/commit/685b5e5a9aa7c7728b1bf5f80325aee2def08473)) | ||
* Add parsing and rendering components for heading, paragraph, and list items ([cdd227f](https://github.com/JeelGajera/jspdf-md-renderer/commit/cdd227fac377a0a9aa34c8076d43cee76bc2de8e)) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,63 @@ | ||
{ | ||
"name": "@jspdf/md-renderer", | ||
"version": "1.0.0", | ||
"description": "A jsPDF utility to render Markdown directly into formatted PDFs with custom designs.", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"./types": "./dist/types/index.d.ts" | ||
"name": "@jspdf/md-renderer", | ||
"version": "1.1.0", | ||
"description": "A jsPDF utility to render Markdown directly into formatted PDFs with custom designs.", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"files": [ | ||
"dist", | ||
"src", | ||
"types" | ||
], | ||
"scripts": { | ||
"build": "rimraf dist && tsc", | ||
"lint": "eslint src/**", | ||
"lint:fix": "eslint src/** --fix", | ||
"format": "prettier --write .", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"prepare": "npm run build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/JeelGajera/jspdf-md-renderer.git" | ||
}, | ||
"keywords": [ | ||
"jspdf", | ||
"markdown", | ||
"pdf", | ||
"renderer" | ||
], | ||
"author": "Jeel Gajera <jeelgajera200@gmail.com>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/JeelGajera/jspdf-md-renderer/issues" | ||
}, | ||
"homepage": "https://github.com/JeelGajera/jspdf-md-renderer#readme", | ||
"dependencies": { | ||
"@jspdf/md-renderer": "file:", | ||
"jspdf": "^2.5.2", | ||
"marked": "^15.0.3" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.16.0", | ||
"@types/node": "^22.10.2", | ||
"@typescript-eslint/eslint-plugin": "^8.18.0", | ||
"@typescript-eslint/parser": "^8.18.0", | ||
"eslint": "^9.16.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"globals": "^15.13.0", | ||
"prettier": "^3.4.2", | ||
"rimraf": "^6.0.1", | ||
"typescript": "^5.7.2", | ||
"typescript-eslint": "^8.18.0" | ||
} | ||
} | ||
"./types": "./dist/types/index.d.ts" | ||
}, | ||
"files": [ | ||
"dist", | ||
"src", | ||
"types" | ||
], | ||
"scripts": { | ||
"build": "rimraf dist && tsc", | ||
"lint": "eslint src/**", | ||
"lint:fix": "eslint src/** --fix", | ||
"format": "prettier --write .", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"prepare": "npm run build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/JeelGajera/jspdf-md-renderer.git" | ||
}, | ||
"keywords": [ | ||
"jspdf", | ||
"markdown", | ||
"pdf", | ||
"renderer" | ||
], | ||
"author": "Jeel Gajera <jeelgajera200@gmail.com>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/JeelGajera/jspdf-md-renderer/issues" | ||
}, | ||
"homepage": "https://github.com/JeelGajera/jspdf-md-renderer#readme", | ||
"dependencies": { | ||
"@jspdf/md-renderer": "file:", | ||
"jspdf": "^2.5.2", | ||
"marked": "^15.0.3" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.16.0", | ||
"@types/node": "^22.10.2", | ||
"@typescript-eslint/eslint-plugin": "^8.18.0", | ||
"@typescript-eslint/parser": "^8.18.0", | ||
"eslint": "^9.16.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"globals": "^15.13.0", | ||
"prettier": "^3.4.2", | ||
"rimraf": "^6.0.1", | ||
"typescript": "^5.7.2", | ||
"typescript-eslint": "^8.18.0" | ||
} | ||
} |