Skip to content

Commit 9e50646

Browse files
feat: bump ace autocompleter to 0.8.0 MONGOSH-1019, MONGOSH-1020, MONGOSH-1003, MONGOSH-1022 (#1139)
1 parent 752dc16 commit 9e50646

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

packages/autocomplete/package-lock.json

Lines changed: 27 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/autocomplete/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"dependencies": {
3434
"@mongosh/shell-api": "0.0.0-dev.0",
35-
"mongodb-ace-autocompleter": "^0.5.0",
35+
"mongodb-ace-autocompleter": "^0.8.0",
3636
"semver": "^7.3.2"
3737
}
3838
}

packages/autocomplete/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export interface AutocompleteParameters {
2929
}
3030

3131
export const BASE_COMPLETIONS = EXPRESSION_OPERATORS.concat(
32-
CONVERSION_OPERATORS.concat(BSON_TYPES.concat(STAGE_OPERATORS)
33-
));
32+
CONVERSION_OPERATORS.concat(BSON_TYPES.concat(STAGE_OPERATORS))
33+
);
3434

3535
export const MATCH_COMPLETIONS = QUERY_OPERATORS.concat(BSON_TYPES);
3636

0 commit comments

Comments
 (0)