Skip to content

Commit 98e5b24

Browse files
committed
Added
1 parent fc61357 commit 98e5b24

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = crlf
10+
charset = utf-8
11+
trim_trailing_whitespace = false
12+
insert_final_newline = false
13+
max_line_length = 120

.github/workflows/generate-includes.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v3
2626

2727
# Runs a single command using the runners shell
28-
- name: Client includes
28+
- name: Client indexes
2929
uses: DaanV2/Typescript-Action-Create-Indexes@latest
3030
with:
3131
# The folder path to start at
@@ -35,7 +35,7 @@ jobs:
3535
*.test.ts
3636
index.ts
3737
38-
- name: Server includes
38+
- name: Server indexes
3939
uses: DaanV2/Typescript-Action-Create-Indexes@latest
4040
with:
4141
# The folder path to start at
@@ -45,7 +45,8 @@ jobs:
4545
*.test.ts
4646
index.ts
4747
48-
- uses: DaanV2/Typescript-Action-Create-Indexes@latest
48+
- name: Server indexes
49+
uses: DaanV2/Typescript-Action-Create-Indexes@latest
4950
with:
5051
# The folder path to start at
5152
folder: ${{ github.workspace }}/server/src/Lib/Minecraft

server/src/Lib/Code/References.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Types } from "bc-minecraft-bedrock-types";
2-
import { DocumentLocation } from "bc-minecraft-bedrock-types/lib/src/Types/include";
2+
import { DocumentLocation } from "bc-minecraft-bedrock-types/lib/src/Types";
33
import { Location } from "vscode-languageserver-types";
44
import { GetDocument } from "../Types/Document/Document";
55

server/src/Lib/Completion/Builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Documentated, Identifiable } from "bc-minecraft-bedrock-types/lib/src/Types/include";
1+
import { Documentated, Identifiable } from "bc-minecraft-bedrock-types/lib/src/Types";
22
import { CompletionItem, CompletionItemKind, MarkupContent } from "vscode-languageserver-types";
33

44
/**

server/src/Lib/Minecraft/Mcfunction/Hover.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Command, ParameterType } from "bc-minecraft-bedrock-command";
22
import { Database } from "../../Database/Database";
3-
import { Documentated, Identifiable, Locatable } from "bc-minecraft-bedrock-types/lib/src/Types/include";
3+
import { Documentated, Identifiable, Locatable } from "bc-minecraft-bedrock-types/lib/src/Types";
44
import { HoverParams, Hover, Range } from "vscode-languageserver";
55
import { IDataSet } from "bc-minecraft-bedrock-project/lib/src/Lib/Types/DataSet/IDataSet";
66
import { IsEducationEnabled } from '../../Project/Attributes';

0 commit comments

Comments
 (0)