From 97f3abf74c051ca7ce7915c5bb2573ae54bff7b1 Mon Sep 17 00:00:00 2001 From: David Nussio Date: Mon, 20 Feb 2023 08:14:06 +0100 Subject: [PATCH 1/3] chore(docs): using jsdelivr insted of unpkg (#838) --- docs/README.md | 4 ++-- docs/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/README.md b/docs/README.md index 5646c54d..8a614876 100644 --- a/docs/README.md +++ b/docs/README.md @@ -136,7 +136,7 @@ The `options` here is derived from CLI flags. #### JSON Schema Store -Developers who are using [vscode](https://code.visualstudio.com/) or text editor which supports the JSON Language Server can leverage the [tsup schema store](https://unpkg.com/tsup/schema.json) via CDN. This schema store will provide intellisense capabilities such as completions, validations and descriptions within JSON file configurations like the `tsup.config.json` and `package.json` (tsup) property. +Developers who are using [vscode](https://code.visualstudio.com/) or text editor which supports the JSON Language Server can leverage the [tsup schema store](https://cdn.jsdelivr.net/npm/tsup/schema.json) via CDN. This schema store will provide intellisense capabilities such as completions, validations and descriptions within JSON file configurations like the `tsup.config.json` and `package.json` (tsup) property. Provide the following configuration in your `.vscode/settings.json` (or global) settings file: @@ -144,7 +144,7 @@ Provide the following configuration in your `.vscode/settings.json` (or global) { "json.schemas": [ { - "url": "https://unpkg.com/tsup/schema.json", + "url": "https://cdn.jsdelivr.net/npm/tsup/schema.json", "fileMatch": [ "package.json", "tsup.config.json" diff --git a/docs/index.html b/docs/index.html index 107b2b14..d6287f12 100644 --- a/docs/index.html +++ b/docs/index.html @@ -18,7 +18,7 @@