diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-09 15:22:44 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-09 15:22:44 -0700 |
commit | c22268e7b686a7470c0d5a66265bd828e685acd4 (patch) | |
tree | 0256e40e28ef8e991dec3fdb64ddf7d05e3305e3 /extension | |
parent | c3d31f00bb589df1c83308b7d9d69ed51c31341a (diff) | |
parent | 6421ce4cd3f88abf4e108c2ec575467198449c4a (diff) | |
download | sncontinue-c22268e7b686a7470c0d5a66265bd828e685acd4.tar.gz sncontinue-c22268e7b686a7470c0d5a66265bd828e685acd4.tar.bz2 sncontinue-c22268e7b686a7470c0d5a66265bd828e685acd4.zip |
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'extension')
-rw-r--r-- | extension/CONTRIBUTING.md (renamed from extension/DEV_README.md) | 20 | ||||
-rw-r--r-- | extension/package-lock.json | 4 | ||||
-rw-r--r-- | extension/package.json | 2 |
3 files changed, 7 insertions, 19 deletions
diff --git a/extension/DEV_README.md b/extension/CONTRIBUTING.md index 3ad9cf68..953b5e48 100644 --- a/extension/DEV_README.md +++ b/extension/CONTRIBUTING.md @@ -6,25 +6,13 @@ This is the Continue VS Code Extension. Its primary jobs are 2. Open the Continue React app in a side panel. The React app's source code lives in the `react-app` directory. The panel is opened by the `continue.openContinueGUI` command, as defined in `src/commands.ts`. 3. Run a Continue server in the background, which connects to both the IDE protocol and the React app. The server is launched in `src/activation/environmentSetup.ts` by calling Python code that lives in `server/` (unless extension settings define a server URL other than localhost:65432, in which case the extension will just connect to that). -## How to debug the VS Code Extension +# How to run the extension -1. Clone the Continue repo +See [Environment Setup](../CONTRIBUTING.md#environment-setup) -2. Open a VS Code window with the `continue` directory as your workspace +# How to run and debug tests -3. Package and then start the FastAPI server by following instructions outlined in the `Continue Server` section of the `continuedev/README.md` - -4. Open a VS Code window with the `extension` directory as your workspace - -5. Run `npm run package` - -6. Open `src/activation/activate.ts` file (or any TypeScript file) - -7. Press `F5` on your keyboard to start `Run and Debug` mode - -8. `cmd+shift+p` to look at developer console and select Continue commands - -9. Every time you make changes to the code, you need to run `npm run esbuild` unless you make changes inside of `react-app` and then you need to run `npm run build` from there +After following the setup in [Environment Setup](../CONTRIBUTING.md#environment-setup) you can run `npm run test` in the command line or the `Server + Tests (VSCode)` launch configuration in VS Code to debug tests + server. ## Notes diff --git a/extension/package-lock.json b/extension/package-lock.json index 37686ef0..09f5aab3 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.286", + "version": "0.0.288", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.286", + "version": "0.0.288", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index 3dd73d8c..f7aa2a57 100644 --- a/extension/package.json +++ b/extension/package.json @@ -14,7 +14,7 @@ "displayName": "Continue", "pricing": "Free", "description": "The open-source coding autopilot", - "version": "0.0.286", + "version": "0.0.288", "publisher": "Continue", "engines": { "vscode": "^1.67.0" |