From 5e73f1207092f889874080c833b0599288ff8363 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Tue, 5 Mar 2024 23:15:39 -0800 Subject: [PATCH] update and remove now unused package --- README.md | 5 +++-- packages/tsconfig/CHANGELOG.md | 7 ------- packages/tsconfig/README.md | 1 - packages/tsconfig/base.json | 22 ---------------------- packages/tsconfig/node16.json | 14 -------------- packages/tsconfig/package.json | 9 --------- packages/tsconfig/react-library.json | 11 ----------- 7 files changed, 3 insertions(+), 66 deletions(-) delete mode 100644 packages/tsconfig/CHANGELOG.md delete mode 100644 packages/tsconfig/README.md delete mode 100644 packages/tsconfig/base.json delete mode 100644 packages/tsconfig/node16.json delete mode 100644 packages/tsconfig/package.json delete mode 100644 packages/tsconfig/react-library.json diff --git a/README.md b/README.md index 92ae3746..43c19781 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,9 @@ This repo is structured as a `pnpm` monorepo. All of our packages can be found In this Repo you will find the Following: -- `playground`: Development and Testing +- `playgrounds/`: + - [`astro-playground`](./playgrounds/astro-playground/): Playground for Astro-GhostCMS development and testing. + - [`starlight-playground`](./playgrounds/starlight-playground/): Playground of Starlight-GhostCMS development and testing. - `packages/`: - [`create-astro-ghostcms`](./packages/create-astro-ghostcms/): CLI Utility to quickly deploy new Astro-GhostCMS projects. - [`astro-ghostcms`](./packages/astro-ghostcms/): The main Integration! @@ -39,7 +41,6 @@ In this Repo you will find the Following: - [`astro-ghostcms-catppuccin`](./packages/astro-ghostcms-catppuccin/): A dark theme made with Catppuccin and TailwindCSS for Astro-GhostCMS Integration Mode. - [`astro-ghostcms-brutalbyelian`](./packages/astro-ghostcms-brutalbyelian/): [ElianCodes](https://www.elian.codes/) Brutal theme modified to work with Astro-GhostCMS - [`starlight-ghostcms`](./packages/starlight-ghostcms/) A [Starlight Plugin](https://starlight.astro.build/resources/plugins/) to integrate your GhostCMS into your documentation website - - `tsconfig`: *LOCAL* Development package for `@ts-ghost/core-api`. ## Contributing diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md deleted file mode 100644 index f60f8171..00000000 --- a/packages/tsconfig/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -# @ts-ghost/tsconfig - -## 0.0.1 - -### Patch Changes - -- 3a5aea9: Updated Tests and Linted packages diff --git a/packages/tsconfig/README.md b/packages/tsconfig/README.md deleted file mode 100644 index 356d6d59..00000000 --- a/packages/tsconfig/README.md +++ /dev/null @@ -1 +0,0 @@ -This is a Local Development package for `@ts-ghost/core-api` \ No newline at end of file diff --git a/packages/tsconfig/base.json b/packages/tsconfig/base.json deleted file mode 100644 index a9932861..00000000 --- a/packages/tsconfig/base.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Default", - "compilerOptions": { - "composite": false, - "declaration": true, - "declarationMap": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "inlineSources": false, - "isolatedModules": true, - "moduleResolution": "node", - "noUnusedLocals": false, - "noUnusedParameters": false, - "preserveWatchOutput": true, - "skipLibCheck": true, - "strict": true, - "sourceMap": true, - "resolveJsonModule": true - }, - "exclude": ["node_modules", "**/*/lib", "**/*/dist"] -} diff --git a/packages/tsconfig/node16.json b/packages/tsconfig/node16.json deleted file mode 100644 index 26dfb924..00000000 --- a/packages/tsconfig/node16.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Node 16", - "extends": "./base.json", - "compilerOptions": { - "lib": ["ES2021", "ESNext", "DOM"], - "module": "commonjs", - "target": "ES2021", - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true - } -} diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json deleted file mode 100644 index af54755f..00000000 --- a/packages/tsconfig/package.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "@ts-ghost/tsconfig", - "version": "0.0.1", - "private": true, - "license": "MIT", - "publishConfig": { - "access": "public" - } -} \ No newline at end of file diff --git a/packages/tsconfig/react-library.json b/packages/tsconfig/react-library.json deleted file mode 100644 index 21a4a4c1..00000000 --- a/packages/tsconfig/react-library.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "React Library", - "extends": "./base.json", - "compilerOptions": { - "lib": ["ES2015"], - "module": "ESNext", - "target": "ES6", - "jsx": "react-jsx" - } -}