From c80d1d2ab36a4fa6985799f9fa13d0ff5200dd9b Mon Sep 17 00:00:00 2001 From: Richard Russell <2265225+rars@users.noreply.github.com> Date: Sat, 9 Mar 2024 10:40:49 +0000 Subject: [PATCH] chore: update version to 7.0.0-alpha.1 --- package-lock.json | 12 ++++++------ package.json | 5 +++-- projects/ngx-diff/package.json | 2 +- .../diff-match-patch/diff-match-patch.service.ts | 2 +- 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index 741c660..406d96b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ngx-diff", - "version": "7.0.0-alpha.0", + "version": "7.0.0-alpha.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ngx-diff", - "version": "7.0.0-alpha.0", + "version": "7.0.0-alpha.1", "dependencies": { "@angular/animations": "^17.0.0", "@angular/common": "^17.0.0", @@ -18,7 +18,7 @@ "@angular/router": "^17.0.0", "@commitlint/cli": "^18.4.4", "@commitlint/config-conventional": "^18.4.4", - "diff-match-patch-ts": "^0.3.0", + "diff-match-patch-ts": "^0.4.0-rc.1", "rxjs": "~7.8.1", "standard-version": "^9.3.2", "tslib": "^2.3.1", @@ -8584,9 +8584,9 @@ "dev": true }, "node_modules/diff-match-patch-ts": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/diff-match-patch-ts/-/diff-match-patch-ts-0.3.0.tgz", - "integrity": "sha512-EJmvayKS7tY9ju9CngQaj+JgvBJsCGomIw3TNOMdzB1D/QdQXZ+HQaEcOQAMy6xOsiJMxnJkt6VTI/HABC1Hvg==" + "version": "0.4.0-rc.1", + "resolved": "https://registry.npmjs.org/diff-match-patch-ts/-/diff-match-patch-ts-0.4.0-rc.1.tgz", + "integrity": "sha512-Fyh53M0lqh4sQGsBpcVtgAmTEH8btygeHfC6qxAyVsetep5ps3JSFN5nmp9UaOf2taqA7aeKblhIAmJ5+caFfQ==" }, "node_modules/diff-sequences": { "version": "29.6.3", diff --git a/package.json b/package.json index 5c29cc9..322f1d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "ngx-diff", - "version": "7.0.0-alpha.0", + "version": "7.0.0-alpha.1", + "type": "module", "scripts": { "ng": "ng", "start": "ng serve", @@ -22,7 +23,7 @@ "@angular/router": "^17.0.0", "@commitlint/cli": "^18.4.4", "@commitlint/config-conventional": "^18.4.4", - "diff-match-patch-ts": "^0.3.0", + "diff-match-patch-ts": "^0.4.0-rc.1", "rxjs": "~7.8.1", "standard-version": "^9.3.2", "tslib": "^2.3.1", diff --git a/projects/ngx-diff/package.json b/projects/ngx-diff/package.json index 5c9eaea..cb7dea9 100644 --- a/projects/ngx-diff/package.json +++ b/projects/ngx-diff/package.json @@ -1,6 +1,6 @@ { "name": "ngx-diff", - "version": "7.0.0-alpha.0", + "version": "7.0.0-alpha.1", "peerDependencies": { "@angular/common": ">=17.0.0", "@angular/core": ">=17.0.0", diff --git a/projects/ngx-diff/src/lib/services/diff-match-patch/diff-match-patch.service.ts b/projects/ngx-diff/src/lib/services/diff-match-patch/diff-match-patch.service.ts index 54090d1..3550a5b 100644 --- a/projects/ngx-diff/src/lib/services/diff-match-patch/diff-match-patch.service.ts +++ b/projects/ngx-diff/src/lib/services/diff-match-patch/diff-match-patch.service.ts @@ -1,4 +1,4 @@ -import { Diff, DiffMatchPatch } from 'diff-match-patch-ts'; +import { type Diff, DiffMatchPatch } from 'diff-match-patch-ts'; import { Injectable } from '@angular/core';