From 1f21f4483d7947329d1bf98a1a38641659ea403f Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sun, 5 Nov 2023 23:47:37 +0200 Subject: [PATCH] **1.1.1** - Include the `src` directory in the npm package. --- README.md | 3 ++- package-lock.json | 4 ++-- package.json | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6ac721e..6d21b93 100644 --- a/README.md +++ b/README.md @@ -30,4 +30,5 @@ All tests in the package can be executed by running: `npm test`. **1.0.0** - This version includes the initial version of react-hooks package. **1.0.1** - Small changes related to appearance (domain and readme updates). -**1.1.0** - The project was migrated to TypeScript, and unit testing using Jest was added to it. +**1.1.0** - The project was migrated to TypeScript, and unit testing using Jest was added to it. +**1.1.1** - Include the `src` directory in the npm package. diff --git a/package-lock.json b/package-lock.json index 22319a5..03547ca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@flare/react-hooks", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@flare/react-hooks", - "version": "1.1.0", + "version": "1.1.1", "license": "MIT", "devDependencies": { "@testing-library/react": "^12.1.5", diff --git a/package.json b/package.json index 52814b5..0ef2130 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@flare/react-hooks", - "version": "1.1.0", + "version": "1.1.1", "description": "react-hooks is an npm package that brings together multiple react hooks useful both in the development of the ecosystem in my home lab and for the general public.", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -44,6 +44,7 @@ "homepage": "https://lab.code-rove.com/gitea/bricks/react-hooks#readme", "files": [ "dist", + "src", "LICENSE", "README.md" ],