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

feat: playgrounds in JS VSCODE-372 #482

Merged
merged 33 commits into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
bcb63b9
feat: replace mongodb language with javascript in playgrounds
alenakhineika Jan 23, 2023
7441125
feat: use js grammar only
alenakhineika Jan 24, 2023
93fdf8c
feat: save playgrounds as mongodb ext
alenakhineika Feb 2, 2023
4b3c70c
docs: add comment about read-only root
alenakhineika Feb 2, 2023
7864768
refactor: clean up
alenakhineika Feb 2, 2023
be08215
refactor: better handling new files
alenakhineika Feb 3, 2023
5b3cc4f
refactor: drop fragment
alenakhineika Feb 3, 2023
ed9554c
feat: add mongodb grammar injection
alenakhineika Feb 16, 2023
bc1b982
refactor: restore update-grammar script
alenakhineika Feb 20, 2023
f261589
Merge remote-tracking branch 'origin/main' into playgrounds-in-js-lan…
alenakhineika Feb 20, 2023
3a3c520
docs: update contributing page
alenakhineika Feb 20, 2023
4fda3fa
refactor: update-grammar
alenakhineika Feb 20, 2023
2296df8
feat: update mongodb injection grammar
alenakhineika Feb 20, 2023
c924b69
test: update for playgrounds in js
alenakhineika Feb 20, 2023
a86e0ff
refactor: reformat
alenakhineika Feb 20, 2023
084bfd9
refactor: restore snippets
alenakhineika Feb 20, 2023
1a009ed
refactor: clean up
alenakhineika Feb 20, 2023
989675f
build: bump vscode engine
alenakhineika Feb 21, 2023
97c3cb2
build: clean up dependencies
alenakhineika Feb 21, 2023
5fd5077
refactor: reforamt
alenakhineika Feb 21, 2023
ee55d53
build: try with prev npm
alenakhineika Feb 21, 2023
a120824
build: try old deps
alenakhineika Feb 21, 2023
ad04e91
refactor: reformat
alenakhineika Feb 21, 2023
dd64167
test: use activeTextEditor from the playground controller
alenakhineika Feb 21, 2023
414c3a7
refactor: os homedir
alenakhineika Feb 24, 2023
8d77ef3
refactor: clean up
alenakhineika Feb 27, 2023
9f4f808
refactor: address pr comments
alenakhineika Feb 27, 2023
c8d59c9
test: try bigger timeout
alenakhineika Feb 27, 2023
1a09308
Merge remote-tracking branch 'origin/main' into playgrounds-in-js-lan…
alenakhineika Feb 27, 2023
d04bab4
test: less playground documents open
alenakhineika Feb 27, 2023
6c849d9
test: clean up
alenakhineika Feb 28, 2023
23f3e85
test: assert.strictEqual
alenakhineika Feb 28, 2023
f8b7326
test: mock text flaky text document
alenakhineika Feb 28, 2023
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
11 changes: 5 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@ npm run watch

#### Code Tour

- `out` compiled extension code
- `out` Compiled extension code
- `images` Icons, logos, etc.
- `snippets` [Bundled MongoDB Snippets][snippet guide]
- `syntaxes` [Syntax highlighting for `.mongodb` files][syntax guide]
- `src`
- `test/suite` where tests live with files names `*.test.ts`
- `scripts` project helper scripts
- `snippets` Bundled MongoDB Snippets
- `syntaxes` [Syntax highlighting](https://code.visualstudio.com/api/language-extensions/syntax-highlight-guide#injection-grammars) for MongoDB keywords
- `src/test/suite` Where tests live with '`*.test.ts`' files names
- `scripts` Project helper scripts

## Releases

Expand Down
Loading