Skip to content

Commit

Permalink
gitignore updates
Browse files Browse the repository at this point in the history
  • Loading branch information
RomneyDa committed Dec 6, 2024
1 parent 68dfb3b commit 450c773
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ Icon
Icon?

.continuerc.json
.prompts/
.aider*

notes.md
Expand All @@ -167,6 +166,4 @@ extensions/intellij/.idea/**
extensions/intellij/bin
extensions/.continue-debug/

*.vsix

binary/.continue
*.vsix
3 changes: 1 addition & 2 deletions core/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ target
**/.DS_Store
npm-debug.log*
.env
.continue-test
testDir
test/.continue-test
coverage
2 changes: 1 addition & 1 deletion core/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
},
// collectCoverage: true,
collectCoverageFrom: [
"util/**/*.{js,ts}", // Adjust this pattern to match files you want coverage for
"**/*.{js,ts}", // Adjust this pattern to match files you want coverage for
"!**/node_modules/**", // Exclude node_modules
"!**/vendor/**", // Exclude any vendor directories if necessary
],
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "The Continue Core contains functionality that can be shared across web, VS Code, or Node.js",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage && open ./coverage/lcov-report/index.html",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage && echo 'opening coverage report' && open ./coverage/lcov-report/index.html",
"tsc:check": "tsc -p ./ --noEmit",
"build:npm": "tsc -p ./tsconfig.npm.json",
"lint": "eslint . --ext ts",
Expand Down
Empty file removed core/test/README.md
Empty file.

0 comments on commit 450c773

Please sign in to comment.