From 6427a169abd8295f5d28d9ced14ce5732fc7febc Mon Sep 17 00:00:00 2001 From: Juraj Uhlar Date: Wed, 27 Nov 2024 14:23:49 +0000 Subject: [PATCH 1/3] chore: remove mentions of open-source FingeprintJS --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b84faa..9048827 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ FingerprintJS Pro Svelte SDK is an easy way to integrate Fingerprint into your S - For TypeScript users: use Typescript 4.8 or higher - For SvelteKit users: SvelteKit 1.0.0 or higher -This package works with Fingerprint Pro, it is not compatible with open-source FingerprintJS. See our documentation to learn more about the [difference between Fingerprint Pro and the open-source FingerprintJS](https://dev.fingerprint.com/docs/pro-vs-open-source). +This package works with the commercial [Fingerprint platform](https://fingerprint.com/). It is not compatible with source-available [FingerprintJS](https://github.com/fingerprintjs/fingerprintjs). Learn more about the [differences between Fingerprint and FingerprintJS](https://fingerprint.com/github/). ## Installation From 815e3b51ec1b3d34e21724a8510cf5bb3fd420f4 Mon Sep 17 00:00:00 2001 From: Juraj Uhlar Date: Wed, 27 Nov 2024 14:27:47 +0000 Subject: [PATCH 2/3] chore: tweak copy --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9048827..4e9c93c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ FingerprintJS Pro Svelte SDK is an easy way to integrate Fingerprint into your S - For TypeScript users: use Typescript 4.8 or higher - For SvelteKit users: SvelteKit 1.0.0 or higher -This package works with the commercial [Fingerprint platform](https://fingerprint.com/). It is not compatible with source-available [FingerprintJS](https://github.com/fingerprintjs/fingerprintjs). Learn more about the [differences between Fingerprint and FingerprintJS](https://fingerprint.com/github/). +This package works with the commercial [Fingerprint platform](https://fingerprint.com/). It is not compatible with the source-available [FingerprintJS library](https://github.com/fingerprintjs/fingerprintjs). Learn more about the [differences between Fingerprint and FingerprintJS](https://fingerprint.com/github/). ## Installation From 8a66b60b592154fbd978805f2aa3216e193a7e49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20=C5=BBydek?= Date: Thu, 5 Dec 2024 10:37:46 +0100 Subject: [PATCH 3/3] build: fix json assertion --- scripts/syncVersion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/syncVersion.js b/scripts/syncVersion.js index fee3e8c..d42b075 100644 --- a/scripts/syncVersion.js +++ b/scripts/syncVersion.js @@ -5,7 +5,7 @@ import path from 'path' import fs from 'fs' -import pkg from '../package.json' assert { type: 'json' } +import pkg from '../package.json' with { type: 'json' } const optionFiles = { target: path.resolve('./src/lib/options.ts'),