File tree Expand file tree Collapse file tree 6 files changed +15
-5
lines changed Expand file tree Collapse file tree 6 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to the "bitloops-language" extension will be documented in t
4
4
5
5
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
6
6
7
+ ### 0.3.2
8
+
9
+ Added new keywords of the bitloops language
10
+
7
11
### 0.3.1
8
12
9
13
Added validation after the initialization of the workspace
Original file line number Diff line number Diff line change 2
2
"name" : " bitloops-server-client" ,
3
3
"description" : " BitLoops Server Client" ,
4
4
"license" : " MIT" ,
5
- "version" : " 0.3.1 " ,
5
+ "version" : " 0.3.2 " ,
6
6
"publisher" : " Bitloops" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.63.0"
Original file line number Diff line number Diff line change 9
9
},
10
10
"icon" : " assets/images/bitloops-language-logo-256x256.png" ,
11
11
"license" : " MIT" ,
12
- "version" : " 0.3.1 " ,
12
+ "version" : " 0.3.2 " ,
13
13
"scripts" : {
14
14
"vs:package" : " vsce package" ,
15
15
"vs:publish" : " vsce publish" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bitloops-lsp-server" ,
3
3
"description" : " BitLoops Language Server" ,
4
- "version" : " 0.3.1 " ,
4
+ "version" : " 0.3.2 " ,
5
5
"publisher" : " Bitloops" ,
6
6
"license" : " MIT" ,
7
7
"engines" : {
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ export const components = {
14
14
PackagePort : 'PackagePort' ,
15
15
Command : 'Command' ,
16
16
Query : 'Query' ,
17
+ DomainEvent : 'DomainEvent' ,
18
+ IntegrationEvent : 'IntegrationEvent' ,
19
+ DomainService : 'DomainService' ,
17
20
} ;
18
21
19
22
export const keywords = [
@@ -141,6 +144,9 @@ export const keywords = [
141
144
'Operations' ,
142
145
'Mutation' ,
143
146
'Query' ,
147
+ 'DomainEvent' ,
148
+ 'IntegrationEvent' ,
149
+ 'DomainService' ,
144
150
145
151
'StandardVO' ,
146
152
] ;
Original file line number Diff line number Diff line change 64
64
"patterns" : [
65
65
{
66
66
"name" : " keyword.control.templateClass.bitloops" ,
67
- "match" : " \\ b(Config|(REST\\ .Methods)|REST|DTO|UseCase|Root|Entity|Rule|OK|Errors|ValueObject|Props|ReadModel|RESTController|RESTRouter|GraphQLController|Feature|Mapper|RepoPort|RepoAdapter|PackagePort|PackageAdapter|ApplicationErrors|DomainErrors|DomainError|ApplicationError|Command|Query|CommandHandler|QueryHandler)\\ b"
67
+ "match" : " \\ b(Config|(REST\\ .Methods)|REST|DTO|UseCase|Root|Entity|Rule|OK|Errors|ValueObject|Props|ReadModel|RESTController|RESTRouter|GraphQLController|Feature|Mapper|RepoPort|RepoAdapter|PackagePort|PackageAdapter|ApplicationErrors|DomainErrors|DomainError|ApplicationError|Command|Query|CommandHandler|QueryHandler|Struct|IntegrationEvent|IntegrationEventHandler|DomainEvent|DomainEventHandler|ServicePort|DomainService )\\ b"
68
68
}
69
69
]
70
70
},
71
71
"myClasses" : {
72
72
"patterns" : [
73
73
{
74
74
"name" : " entity.name.class.bitloops" ,
75
- "match" : " \\ b[A-Z]+[a-zA-Z0-9]*(DTO|UseCase|Aggregate|VO|Entity|Error|Controller|Router|Feature|Mapper|RepoPort|RepoAdapter|PackagePort|PackageAdapter|Error|Props|Rule|Command|Query|ReadModel|CommandHandler|QueryHandler)\\ b"
75
+ "match" : " \\ b[A-Z]+[a-zA-Z0-9]*(DTO|UseCase|Aggregate|VO|Entity|Error|Controller|Router|Feature|Mapper|RepoPort|RepoAdapter|PackagePort|PackageAdapter|Error|Props|Rule|Command|Query|ReadModel|CommandHandler|QueryHandler|IntegrationEvent|IntegrationEventHandler|DomainEvent|DomainEventHandler|ServicePort|DomainService )\\ b"
76
76
}
77
77
]
78
78
},
You can’t perform that action at this time.
0 commit comments