diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index dd47fe91..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,40 +0,0 @@ -image: node:16-buster - -variables: - GIT_SUBMODULE_STRATEGY: recursive - -cache: - paths: - - node_modules - -# Fetch dependencies and setup project for compilation. -install: - stage: prepare - script: - - yarn - -# Type check the project -typecheck: - stage: test - needs: - - install - dependencies: - - install - script: - - yarn typecheck - -# Lint the project and check prettier output. -lint: - stage: test - allow_failure: true - needs: - - install - dependencies: - - install - script: - - yarn lint - - yarn --check 'src/**/*.{js,jsx,ts,tsx}' - -stages: - - prepare - - test diff --git a/README.md b/README.md index 56fd5836..b4f645ef 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,18 @@ This is the web client for Revolt, which is also available live at [app.revolt.chat](https://app.revolt.chat). +## Pending Rewrite + +The following code is pending a partial or full rewrite: + +- `src/components`: components are being migrated to [revoltchat/components](https://github.com/revoltchat/components) +- `src/styles`: needs to be migrated to [revoltchat/components](https://github.com/revoltchat/components) +- `src/context/intermediate`: modal system is being rewritten from scratch +- `src/context/revoltjs`: client state management needs to be rewritten and include support for concurrent clients +- `src/lib`: this needs to be organised +- `src/*.ts(x)`: half of these files should be moved +- `src/*.d.ts`: should be in dedicated types folder + ## Stack - [Preact](https://preactjs.com/) diff --git a/VERSION b/VERSION deleted file mode 100644 index 2aeddead..00000000 --- a/VERSION +++ /dev/null @@ -1 +0,0 @@ -0.5.3-1 \ No newline at end of file diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 15cd94df..00000000 --- a/vercel.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "routes": [{ "src": "/[^.]+", "dest": "/", "status": 200 }] -} \ No newline at end of file