diff --git a/CHANGELOG.md b/CHANGELOG.md index fae84ec..9d0ee2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). The format is based on [Keep a Changelog](http://keepachangelog.com/). +## Version - 1.2.1 - 2023-06-27 + +### Added +- Added repository info to `package.json` + +### Fixed +- Missing compiled `lib/` ## Version 1.2.0 - 2023-06-27 diff --git a/package.json b/package.json index 3c0ee42..3e3cb7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html2notebook", - "version": "1.2.0", + "version": "1.2.1", "author": "Mara Nikola Kiefer", "license": "MIT", "description": "Convert static HTML files to notebooks", @@ -12,6 +12,10 @@ "LICENSE" ], "types": "lib/types/index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/mnkiefer/html2notebook" + }, "dependencies": { "htmlparser2": "^9.0.0" }, @@ -29,7 +33,7 @@ "scripts": { "compile": "tsc -p ./", "watch": "tsc -p ./ --watch", - "test": "jest", + "test": "npm run compile && jest", "lint": "eslint", "docs": "npx typedoc --entryPoints src/index.ts --out docs" }