From 83a596226c981dd251e983ef0f1c949ba14d626e Mon Sep 17 00:00:00 2001 From: Mohammed Le Doze Date: Sun, 10 Sep 2023 15:03:04 +0200 Subject: [PATCH] fix files listed in npm package --- CHANGELOG.md | 4 ++++ composer.json | 2 +- package.json | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df74c95f..a7bdb302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v4.1.1] - 2023-09-10 +### Fixed +- fix files listed in npm package + ## [v4.1.0] - 2022-02-25 ### Added - add Swedish translation (#398) diff --git a/composer.json b/composer.json index 6872def8..5cdfd5eb 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "mledoze/countries", - "version": "4.1.0", + "version": "4.1.1", "description": "List of world countries in JSON, CSV, XML and Yaml", "keywords": [ "world", diff --git a/package.json b/package.json index 495d4c94..3267b048 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "world-countries", "description": "List of world countries in JSON, CSV, XML and Yaml", - "version": "4.1.0", + "version": "4.1.1", "exports": { "import": "./index.mjs", "require": "./index.cjs" @@ -34,7 +34,8 @@ "countries.json", "data/*", "dist/*", + "index.cjs", "index.d.ts", - "index.js" + "index.mjs" ] }