summaryrefslogtreecommitdiff
path: root/extension/package.json
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-05 09:30:51 +0200
committerTy Dunn <ty@tydunn.com>2023-06-05 09:30:51 +0200
commit897e6dc1239be26db74a933d10325b86ae55e5fb (patch)
tree1b462d1ab3bb2a2b0fc134ba92d3af7da2d72a57 /extension/package.json
parentdb0c493850d73c9d05f96ce1c5a04fc318c77422 (diff)
parent99d0cf12dcd1481e719e78483fc7df080dc95954 (diff)
downloadsncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.tar.gz
sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.tar.bz2
sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.zip
addressing conflicts
Diffstat (limited to 'extension/package.json')
-rw-r--r--extension/package.json24
1 files changed, 17 insertions, 7 deletions
diff --git a/extension/package.json b/extension/package.json
index a3b82c1b..7bd48f98 100644
--- a/extension/package.json
+++ b/extension/package.json
@@ -14,7 +14,7 @@
"displayName": "Continue",
"pricing": "Free",
"description": "Refine code 10x faster",
- "version": "0.0.19",
+ "version": "0.0.20",
"publisher": "Continue",
"engines": {
"vscode": "^1.74.0"
@@ -23,7 +23,8 @@
"Other"
],
"activationEvents": [
- "onStartupFinished"
+ "onStartupFinished",
+ "onView:continueGUIView"
],
"main": "./out/extension.js",
"contributes": {
@@ -59,9 +60,9 @@
"title": "Write a docstring for the current function"
},
{
- "command": "continue.openDebugPanel",
+ "command": "continue.openContinueGUI",
"category": "Continue",
- "title": "Open Debug Panel"
+ "title": "Open Continue GUI"
},
{
"command": "continue.askQuestionFromInput",
@@ -149,9 +150,18 @@
"menus": {
"view/title": [
{
- "command": "continue.openDebugPanel",
+ "command": "continue.openContinueGUI",
"group": "navigation",
- "when": "view == continue.debugView"
+ "when": "view == continue.continueGUIView"
+ }
+ ]
+ },
+ "views": {
+ "explorer": [
+ {
+ "type": "webview",
+ "id": "continue.continueGUIView",
+ "name": "Continue GUI"
}
]
}
@@ -171,7 +181,7 @@
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.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",
- "full-package": "cd ../continuedev && poetry build && cp ./dist/continuedev-0.1.1-py3-none-any.whl ../extension/scripts/continuedev-0.1.1-py3-none-any.whl && cd ../extension && npm run typegen && npm run clientgen && cd react-app && npm run build && cd .. && npm run package",
+ "full-package": "cd ../continuedev && poetry build && cp ./dist/continuedev-0.1.1-py3-none-any.whl ../extension/scripts/continuedev-0.1.1-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",
"reinstall": "rm -rf ./build && npm run package && npm run uninstall && npm run install-extension"