From 63c2ce4be5a53320fcc297308697ee7b66e88e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l=20Edman?= Date: Mon, 20 May 2024 07:28:08 +0200 Subject: [PATCH] add CHANGELOG and .git to pkg repo --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ package.json | 7 ++++++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f865834 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [Unreleased] + +- use prettier for formatting rules +- use texample to run through README examples + +## [6.0.0] - 2023-08-09 + +### Breaking + +- timezone function calls travel by default #3 +- timezone function signature also takes travel arguments + +## [5.0.0] - 2023-04-10 + +- export as module with dist for require and umd + +## [4.0.1] - 2022-12-09 + +- replace lab with mocha and chai +- default to node v14 +- stop building node v10 +- bump babel and rollup +- use c8 for coverage diff --git a/package.json b/package.json index bd08ea9..4c3f7a2 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,12 @@ "sideEffects": true, "repository": { "type": "git", - "url": "git://github.com/paed01/chronokinesis" + "url": "git://github.com/paed01/chronokinesis.git" + }, + "exports": { + "import": "./index.js", + "require": "./dist/index.cjs", + "types": "./index.d.ts" }, "scripts": { "toc": "node generate-api-toc.cjs",