Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Output folder issue fix #7

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,25 @@ This extension for VS Code brings Greptile's capabilities directly into your dev
3. Search for "Greptile".
4. Click "Install".

## Run Locally
1. Install dependencies
```
npm run install:all
```

2. Build and start webview
```
npm run build:webview
npm run start:webview
```

3. Compile VS Code extension
```
npm run compile
```

Then, press `F5` in `extension.ts` tab

## Usage

- Press CMD+L
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"engines": {
"vscode": "^1.75.0"
},
"main": "./dist/extension.js",
"main": "./out/extension.js",
"contributes": {
"views": {
"greptileView": [
Expand Down