Skip to content

Commit cfbbaa7

Browse files
authored
Merge branch 'dev' into unit-tests
2 parents 8b875c7 + fb59548 commit cfbbaa7

84 files changed

Lines changed: 107 additions & 12782 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/builds.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ on:
99
- ".vscode/"
1010
- ".husky/"
1111
- "playground/"
12-
- "docs/"
1312
- "tony/"
1413
pull_request:
1514
paths-ignore:
1615
- ".github/"
1716
- ".vscode/"
1817
- ".husky/"
1918
- "playground/"
20-
- "docs/"
2119
- "tony/"
2220
workflow_dispatch:
2321
inputs:
@@ -49,7 +47,7 @@ jobs:
4947
uses: actions/cache@v4
5048
with:
5149
path: node_modules/
52-
key: neuropilot-build
50+
key: neuropilot-build-${{ github.repository }}
5351

5452
- name: Install dependencies
5553
run: npm install

.github/workflows/docs.yml

Lines changed: 0 additions & 107 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,16 @@ jobs:
4242
git config --global user.name "GitHub Actions"
4343
git config --global user.email "actions@github.com"
4444
45-
- name: Bump docs version
46-
if: ${{ inputs.update_docs }}
47-
working-directory: ${{ github.workspace }}/docs
48-
run: |
49-
npm version --no-git-tag-version ${{ inputs.version }}
50-
git add package.json package-lock.json
51-
5245
- name: Publish extension
5346
env:
5447
NODE_ENV: 1
55-
run: npx @vscode/vsce publish ${{inputs.version}} -p ${{secrets.MARKETPLACE_TOKEN}} --allow-star-activation --no-git-tag-version
48+
run: npx @vscode/vsce publish ${{inputs.version}} -p ${{secrets.MARKETPLACE_TOKEN}} --allow-star-activation
5649

5750
- name: Commit and push version change
5851
run: |
59-
new_version=$(npm show ./ version)
60-
git commit -am "$new_version"
61-
git tag -a "v$new_version" -m "$new_version"
6252
git push --follow-tags https://VSC-NeuroPilot:${{secrets.GITHUB_TOKEN}}:@github.com/VSC-NeuroPilot/neuropilot
6353
6454
- name: Rebuild docs site
6555
if: ${{ inputs.update_docs }}
66-
uses: ./.github/workflows/docs.yml
56+
run: gh workflow run bump.yml -f check=${{ inputs.update_docs }} --repo VSC-NeuroPilot/docs
6757

.husky/pre-commit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
npm run types
22
npx eslint
3-
cd docs && npm run check

.vscodeignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ esbuild-configs/
2626
.venv
2727
tony/
2828

29-
# Docs
30-
docs/**
31-
!docs/public/*.gif
32-
!docs/public/*.png
33-
3429
# Coverage
3530
/coverage
3631

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ If the extension was started before the API was ready, or you lose connection to
3838

3939
### Autopilot/Copilot Mode
4040

41-
![Autopilot demo GIF](docs/public/demo-autopilot.gif)
42-
![Copilot demo GIF](docs/public/demo-copilot.gif)
41+
![Autopilot demo GIF](https://vsc-neuropilot.github.io/docs/demo-autopilot.gif)
42+
![Copilot demo GIF](https://vsc-neuropilot.github.io/docs/demo-copilot.gif)
4343

4444
We refer to permission modes in NeuroPilot as either Autopilot mode (top GIF) or Copilot mode (bottom GIF) which can be configured alongside disabling it completely.
4545
These refer to different levels of permission Neuro can be given over certain groups of actions.
@@ -106,4 +106,4 @@ The short answer is no, there isn't an intentional Remote Code Execution vulnera
106106
If you have an idea or want to contribute a feature, please first [create an issue](https://github.com/VSC-NeuroPilot/neuropilot/issues) or send a message to `@Pasu4` in the project's [post on the Neuro Discord](https://discord.com/channels/574720535888396288/1350968830230396938).
107107
If you make a pull request that contributes code, please run `npm run lint src` and resolve any errors that did not get auto-fixed, preferrably before each commit.
108108

109-
Please also refer to our [contributor docs](https://vsc-neuropilot.github.io/neuropilot/contributors).
109+
Please also refer to our [contributor docs](https://vsc-neuropilot.github.io/docs/contributors).

docs/README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/astro.config.mts

Lines changed: 0 additions & 111 deletions
This file was deleted.

docs/consts/links.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/eslint.config.mjs

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)