From 4188ec7f361e33cc1faf4514ea0e99d9e5591cd5 Mon Sep 17 00:00:00 2001 From: Core121 Date: Thu, 22 Dec 2022 07:38:26 -0500 Subject: [PATCH 1/4] Revert package number --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9fc88da..ad1a4ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-print", - "version": "1.3.0", + "version": "1.2.1", "description": "Plug n' Play Angular (2++) directive to print your stuff", "author": "https://github.com/selemxmn/ngx-print/graphs/contributors", "repository": { From 2703d84997971cc3ca8dafeeabc925140507a7d6 Mon Sep 17 00:00:00 2001 From: Core121 Date: Thu, 22 Dec 2022 07:38:31 -0500 Subject: [PATCH 2/4] 1.3.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ad1a4ce..9fc88da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-print", - "version": "1.2.1", + "version": "1.3.0", "description": "Plug n' Play Angular (2++) directive to print your stuff", "author": "https://github.com/selemxmn/ngx-print/graphs/contributors", "repository": { From 7cc4f2df9b49975808921da6f6a3c5b5a7dd44ac Mon Sep 17 00:00:00 2001 From: Core121 Date: Fri, 23 Dec 2022 09:32:02 -0500 Subject: [PATCH 3/4] 1.3.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index dfd9af6..bcca2ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ngx-print", - "version": "1.3.0", + "version": "1.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ngx-print", - "version": "1.3.0", + "version": "1.3.1", "license": "MIT", "dependencies": { "@angular/animations": "^15.0.0", diff --git a/package.json b/package.json index 9fc88da..642158d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-print", - "version": "1.3.0", + "version": "1.3.1", "description": "Plug n' Play Angular (2++) directive to print your stuff", "author": "https://github.com/selemxmn/ngx-print/graphs/contributors", "repository": { From 439c6569cfebdbe362d6916b2a3d2619d81d12ff Mon Sep 17 00:00:00 2001 From: Core121 Date: Fri, 23 Dec 2022 10:18:38 -0500 Subject: [PATCH 4/4] Needed to include partial ivy compilation on config --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5ab8149..3a0d973 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -24,6 +24,9 @@ "ngx-print/*": [ "dist/ngx-print/*" ] - } + }, + }, + "angularCompilerOptions": { + "compilationMode": "partial" } }