Skip to content

Commit

Permalink
bump new version
Browse files Browse the repository at this point in the history
  • Loading branch information
mkslanc committed Jan 24, 2025
1 parent 6a5a445 commit 4c76b38
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ace-linters-root",
"version": "1.4.0",
"version": "1.4.1",
"scripts": {
"build:parts": "npm run build -ws",
"build": "npm run build:parts && webpack",
Expand Down
2 changes: 1 addition & 1 deletion packages/ace-linters/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ace-linters",
"author": "Azat Alimov <mkslanc@gmail.com>",
"version": "1.4.0",
"version": "1.4.1",
"scripts": {
"clean": "rimraf build",
"prebuild": "node prebuild.js",
Expand Down
3 changes: 1 addition & 2 deletions packages/ace-linters/types/services/json/json-service.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { LanguageService as JsonLanguageService, SchemaConfiguration } from "vscode-json-languageservice";
import { BaseService } from "../base-service";
import * as lsp from "vscode-languageserver-protocol";
import * as jsonService from 'vscode-json-languageservice';
import { TextDocumentIdentifier, TextDocumentItem } from "vscode-languageserver-protocol";
import { JsonServiceOptions, LanguageService } from "../../types/language-service";
export declare class JsonService extends BaseService<JsonServiceOptions> implements LanguageService {
Expand Down Expand Up @@ -34,7 +33,7 @@ export declare class JsonService extends BaseService<JsonServiceOptions> impleme
removeDocument(document: TextDocumentIdentifier): void;
setOptions(documentUri: string, options: JsonServiceOptions, merge?: boolean): void;
setGlobalOptions(options: JsonServiceOptions): void;
format(document: lsp.TextDocumentIdentifier, range: lsp.Range, options: lsp.FormattingOptions): Promise<jsonService.TextEdit[]>;
format(document: lsp.TextDocumentIdentifier, range: lsp.Range, options: lsp.FormattingOptions): Promise<lsp.TextEdit[]>;
doHover(document: lsp.TextDocumentIdentifier, position: lsp.Position): Promise<lsp.Hover | null>;
doValidation(document: lsp.TextDocumentIdentifier): Promise<lsp.Diagnostic[]>;
doComplete(document: lsp.TextDocumentIdentifier, position: lsp.Position): Promise<lsp.CompletionItem[] | lsp.CompletionList | null>;
Expand Down

0 comments on commit 4c76b38

Please sign in to comment.