diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-07-26 00:56:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 00:56:29 -0700 |
commit | def8e5612cd4c889a2e26d4152fffcf3d694abdf (patch) | |
tree | ca423625619b9d628651bcc9a395ba8f47fa03a6 /extension/package.json | |
parent | b759e2dbfe36b3e8873527b9736d64866da9b604 (diff) | |
parent | d9a4ed993aad36464776c093333af1a310e5a492 (diff) | |
download | sncontinue-def8e5612cd4c889a2e26d4152fffcf3d694abdf.tar.gz sncontinue-def8e5612cd4c889a2e26d4152fffcf3d694abdf.tar.bz2 sncontinue-def8e5612cd4c889a2e26d4152fffcf3d694abdf.zip |
Merge pull request #297 from continuedev/merge-config-py-TO-main
Merge config py to main
Diffstat (limited to 'extension/package.json')
-rw-r--r-- | extension/package.json | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/extension/package.json b/extension/package.json index 80807d41..2f8b577d 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,6 +1,6 @@ { "name": "continue", - "icon": "media/continue-gradient.png", + "icon": "media/terminal-continue.png", "repository": { "type": "git", "url": "https://github.com/continuedev/continue" @@ -14,7 +14,7 @@ "displayName": "Continue", "pricing": "Free", "description": "The open-source coding autopilot", - "version": "0.0.197", + "version": "0.0.201", "publisher": "Continue", "engines": { "vscode": "^1.67.0" @@ -35,7 +35,8 @@ "chat" ], "activationEvents": [ - "*" + "onStartupFinished", + "onView:continueGUIView" ], "main": "./out/extension.js", "browser": "./out/extension.js", @@ -157,7 +158,7 @@ { "id": "continue", "title": "Continue ", - "icon": "react-app/dist/continue-dev-square.png" + "icon": "media/continue-dev-square.png" } ] }, @@ -225,7 +226,7 @@ "lint": "eslint src --ext ts", "test": "node ./out/test/runTest.js", "jest": "jest --config ./jest.config.js", - "package": "cp ./config/prod_config.json ./config/config.json && mkdir -p ./build && vsce package --out ./build && cp ./config/dev_config.json ./config/config.json", + "package": "mkdir -p ./build && vsce package --out ./build", "full-package": "cd ../continuedev && poetry install && poetry build && cp ./dist/continuedev-0.1.2-py3-none-any.whl ../extension/server/continuedev-0.1.2-py3-none-any.whl && cd ../extension && npm install && npm run typegen && npm run clientgen && cd react-app && npm install && npm run build && cd .. && npm run package", "install-extension": "code --install-extension ./build/continue-0.0.8.vsix", "uninstall": "code --uninstall-extension .continue", |