From 5eb14033bcb3dc4d74e158e8159aa5a2c4835c62 Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 15 Jun 2024 12:32:28 -0700 Subject: [PATCH] update CHANGELOG. clerical change use git+ at test package home --- CHANGELOG.md | 4 ++++ tests/tests-ava/package.json | 2 +- tests/tests-jest-ts/package.json | 2 +- tests/tests-jest/package.json | 2 +- tests/tests-mocha/package.json | 2 +- tests/tests-no-loader/package.json | 2 +- tests/tests-node/package.json | 2 +- tests/tests-nodets/package.json | 2 +- tests/tests-source-map/package.json | 2 +- tests/tests-tsm/package.json | 2 +- tests/tests-tsx/package.json | 2 +- tests/tests-uvu/package.json | 2 +- 12 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5210f659..9436ae11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # changelog + * 2.6.6 _Jun.15.2024_ + * [add tsx tests and remove tsx caution from README](https://github.com/iambumblehead/esmock/pull/305) thanks @galexite + * [pin node 22.1 at test CI](https://github.com/iambumblehead/esmock/pull/306) and ignore regressions in new node 22 + * [migrate to eslint 9](https://github.com/iambumblehead/esmock/pull/306) * 2.6.5 _Apr.25.2024_ * [add node 22 to ci test pipeline](https://github.com/iambumblehead/esmock/pull/297) thanks @aladdin-add * [use json import syntax `with { type: 'json' }`](https://github.com/iambumblehead/esmock/pull/298) for node 22 diff --git a/tests/tests-ava/package.json b/tests/tests-ava/package.json index bcf7eeae..457ac904 100644 --- a/tests/tests-ava/package.json +++ b/tests/tests-ava/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, ava", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "ava": "^5.3.1", diff --git a/tests/tests-jest-ts/package.json b/tests/tests-jest-ts/package.json index 40cff77b..89eba7b7 100644 --- a/tests/tests-jest-ts/package.json +++ b/tests/tests-jest-ts/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, jest with jest-light-runner", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "ts-node": "^10.9.1", diff --git a/tests/tests-jest/package.json b/tests/tests-jest/package.json index d5a5077e..217efd7f 100644 --- a/tests/tests-jest/package.json +++ b/tests/tests-jest/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, jest with jest-light-runner", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "jest": "^29.6.2", diff --git a/tests/tests-mocha/package.json b/tests/tests-mocha/package.json index 80349073..27fa7614 100644 --- a/tests/tests-mocha/package.json +++ b/tests/tests-mocha/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, mocha", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "mocha": "^10.2.0", diff --git a/tests/tests-no-loader/package.json b/tests/tests-no-loader/package.json index 60153624..a5bce053 100644 --- a/tests/tests-no-loader/package.json +++ b/tests/tests-no-loader/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, no loader should error", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "esmock": "file:..", diff --git a/tests/tests-node/package.json b/tests/tests-node/package.json index 5427e7cd..5bf8edd7 100644 --- a/tests/tests-node/package.json +++ b/tests/tests-node/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, node native runner", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "esmock": "file:..", diff --git a/tests/tests-nodets/package.json b/tests/tests-nodets/package.json index 1af42a29..7ae9dbc0 100644 --- a/tests/tests-nodets/package.json +++ b/tests/tests-nodets/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, ts-node/esm with node native runner", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "ts-node": "^10.9.1", diff --git a/tests/tests-source-map/package.json b/tests/tests-source-map/package.json index 46c464dc..bd631b24 100644 --- a/tests/tests-source-map/package.json +++ b/tests/tests-source-map/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, ava with sourcemap", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "esmock": "file:..", diff --git a/tests/tests-tsm/package.json b/tests/tests-tsm/package.json index 4869fe9b..2db35d5f 100644 --- a/tests/tests-tsm/package.json +++ b/tests/tests-tsm/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, tsm with node native runner", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "tsm": "^2.3.0", diff --git a/tests/tests-tsx/package.json b/tests/tests-tsx/package.json index 3deafcd3..dfe93542 100644 --- a/tests/tests-tsx/package.json +++ b/tests/tests-tsx/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, tsx with node", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "esmock": "file:..", diff --git a/tests/tests-uvu/package.json b/tests/tests-uvu/package.json index d8f9a396..de32efa2 100644 --- a/tests/tests-uvu/package.json +++ b/tests/tests-uvu/package.json @@ -3,7 +3,7 @@ "description": "esmock unit tests, uvu", "repository": { "type": "git", - "url": "https://github.com/iambumblehead/esmock.git" + "url": "git+https://github.com/iambumblehead/esmock.git" }, "dependencies": { "uvu": "^0.5.6",