diff --git a/package.json b/package.json index fbf56f7..c4ebe65 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,6 @@ "build:web": "lerna run build --scope \"gpt-turbo-web\"", "build:cli": "lerna run build --scope \"gpt-turbo-cli\"", "build:discord": "lerna run build --scope \"gpt-turbo-discord\"", - "build:nest": "lerna run build --scope \"gpt-turbo-nest\"", "lint:strict": "lerna run lint:strict", "lint:fix": "lerna run lint:fix", "test": "lerna run test", diff --git a/packages/implementations/nest/README.md b/packages/implementations/nest/README.md index 1d4efd9..b2addf3 100644 --- a/packages/implementations/nest/README.md +++ b/packages/implementations/nest/README.md @@ -6,10 +6,10 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -> ⚠⚠⚠ Since v5, this implementation is only maintained to make the build pass. Some cases may not work as expected. ⚠⚠⚠ +> ⚠⚠⚠ Since v5.0.1, this implementation is no longer maintained due to an unknown issue preventing it from building. ⚠⚠⚠ > > The Nest implementation was more of a proof of concept when GPT Turbo started, rather than an actual useable project like the other implementations. -> For this reason, not much effort will be put into maintaining it. It's kept here for historical purposes, and may be reworked in the future or removed entirely. +> It's kept here for historical purposes, and may be reworked in the future or removed entirely. > You're welcome to contribute to it if you want to keep it alive! > > *Note: this implementation has been tested thoroughly for the last time on v5.0.0 and seemed to work fine, apart from not using new features beyond v1.4, such as callable functions and plugins* diff --git a/packages/implementations/nest/package.json b/packages/implementations/nest/package.json index ccb44b0..41dce98 100644 --- a/packages/implementations/nest/package.json +++ b/packages/implementations/nest/package.json @@ -10,7 +10,7 @@ "lint:strict": "npm run lint -- --max-warnings 0", "lint:fix": "npm run lint -- --fix", "tscheck": "tsc --noEmit", - "build": "npm run lint:strict && npm run tscheck && nest build", + "_build": "npm run lint:strict && npm run tscheck && nest build", "start": "nest start", "dev": "nest start --watch", "debug": "nest start --debug --watch",