From b87b769f08f372940da43ab1347d75b8ee856786 Mon Sep 17 00:00:00 2001 From: Louie Colgan Date: Sun, 6 Dec 2020 18:27:24 +0000 Subject: [PATCH 1/3] fix(content-files): remove unnecessary files packaged up --- .../Blazor.IntersectionObserver.csproj | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj b/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj index 7911657..6bd7a45 100644 --- a/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj +++ b/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj @@ -58,19 +58,14 @@ - + + + + - - Never - - - Never - - - Never - + @@ -84,5 +79,15 @@ True + + Never + + + Never + + + + Never + \ No newline at end of file From 74d2647ac02a2b8dc670a1f1b0d0bbae01319890 Mon Sep 17 00:00:00 2001 From: Louie Colgan Date: Sun, 6 Dec 2020 18:28:10 +0000 Subject: [PATCH 2/3] fix(version): versioning to 1.1.0 --- Directory.Build.props | 2 +- .../Blazor.IntersectionObserver.csproj | 2 +- src/Blazor.IntersectionObserver/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 5e6dd89..9af82d2 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -33,7 +33,7 @@ - 1.0.0 + 1.1.0 dev diff --git a/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj b/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj index 6bd7a45..d4eb849 100644 --- a/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj +++ b/src/Blazor.IntersectionObserver/Blazor.IntersectionObserver.csproj @@ -16,7 +16,7 @@ Blazor Intersection Observer Intersection Observer API for Blazor applications true - 1.0.0 + 1.1.0 BlazorIntersectionObserver 06/12/2020 - Updated project to use dotnet 5 diff --git a/src/Blazor.IntersectionObserver/package.json b/src/Blazor.IntersectionObserver/package.json index 3ab5839..27e71c7 100644 --- a/src/Blazor.IntersectionObserver/package.json +++ b/src/Blazor.IntersectionObserver/package.json @@ -1,7 +1,7 @@ { "name": "blazor.intersectionobserver", "private": true, - "version": "1.0.0", + "version": "1.1.0", "description": "Intersection Observer wrapper for Blazor", "main": "index.ts", "scripts": { From 51714c5465304cb3efde0aee8362f3bd8c174ae4 Mon Sep 17 00:00:00 2001 From: Louie Colgan Date: Sun, 6 Dec 2020 18:31:01 +0000 Subject: [PATCH 3/3] fix(npm): main src index file --- src/Blazor.IntersectionObserver/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Blazor.IntersectionObserver/package.json b/src/Blazor.IntersectionObserver/package.json index 27e71c7..b5a9576 100644 --- a/src/Blazor.IntersectionObserver/package.json +++ b/src/Blazor.IntersectionObserver/package.json @@ -3,7 +3,7 @@ "private": true, "version": "1.1.0", "description": "Intersection Observer wrapper for Blazor", - "main": "index.ts", + "main": "src/index.ts", "scripts": { "build": "rollup -c", "test": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters cobertura",