From e31de4f175a8cf7d885a6d5a78e6ae5db1211f57 Mon Sep 17 00:00:00 2001 From: andiwils Date: Wed, 18 Aug 2021 12:21:19 -0400 Subject: [PATCH] fix: remove blank testbed until needed and correct readme steps (#17) * fix: remove blank testbed until needed and correct readme steps * Update README.md --- .eslintrc.js | 2 +- README.md | 8 +++----- testbed/index.html | 8 -------- testbed/index.js | 0 tsconfig.json | 2 +- 5 files changed, 5 insertions(+), 15 deletions(-) delete mode 100644 testbed/index.html delete mode 100644 testbed/index.js diff --git a/.eslintrc.js b/.eslintrc.js index f41d53c..a2bfdb9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -97,7 +97,7 @@ module.exports = { 'import/resolver': { node: { extensions: ['.js', '.ts'], - paths: ['src', 'testbed'], + paths: ['src'], }, }, }, diff --git a/README.md b/README.md index ffbc0d0..3cd7b3c 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,10 @@ Handles the WebRTC core functionality. -## Development: +## Developement -1. Run `yarn install` -1. Run `yarn dev:bootstrap` -1. Run `yarn dev` -1. Open http://localhost:3000/ +1. `yarn` +1. `yarn watch` ## Usage diff --git a/testbed/index.html b/testbed/index.html deleted file mode 100644 index ab136d3..0000000 --- a/testbed/index.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/testbed/index.js b/testbed/index.js deleted file mode 100644 index e69de29..0000000 diff --git a/tsconfig.json b/tsconfig.json index 9025e6a..ca3b2a5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -78,5 +78,5 @@ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ }, "include": ["src/**/*.ts"], - "exclude": ["node_modules/**", "testbed/**"] + "exclude": ["node_modules/**"] }