You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a workaround for https://github.com/eslint/eslint/issues/3458
3
+
4
+
TLDR; eslint requires you to know and declare all eslint plugins that are being used in the plugin you
5
+
are consuming as peer dependencies. This patch fixes that so you don't have to add to your peer
6
+
dependencies and is [recommended](https://github.com/microsoft/rushstack/tree/main/eslint/eslint-config#2-choose-one-profile) by the rush stack eslint-config package.
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,13 @@ Because this helper is designed to allow sharing credentials on the same machine
10
10
11
11
## Installation and Usage
12
12
13
-
This helper is written in Typescript and compiles down to two Javascript scripts, one for the server and one for the client. At this point, there is no installation tooling or bundling. The simplest way to install it is to clone this repo on both the host machine and inside the Docker container. Once that is done, do the following:
13
+
This helper is written in Typescript and compiles down to two Javascript scripts, one for the server and one for the client. At this point, there is no installation tooling. The simplest way to install it is to clone this repo on both the host machine and inside the Docker container. Once that is done, do the following:
14
14
15
15
### On the host
16
16
17
17
Run `pnpm install & pnpm build` or your favorite package tool to install dependencies and compile the app.
18
18
19
-
At the root of the repository, run `node dist/server/index.js`. This will launch the server and it will listen for TCP connections on localhost at a random port which will be displayed in the console. You will need to keep this console/terminal open.
19
+
At the root of the repository, run `node dist/gcf-server.js`. This will launch the server and it will listen for TCP connections on localhost at a random port which will be displayed in the console. You will need to keep this console/terminal open.
20
20
21
21
Notes:
22
22
@@ -32,7 +32,7 @@ Edit your git configuration file to call the client you just complied as a git c
0 commit comments