Skip to content

Commit 6ea1cf9

Browse files
committed
v0.0.3
1 parent fd33fe3 commit 6ea1cf9

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

LICENSE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
66

77
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
88

9-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10+
11+
This license only covers the code and does not include the Bitloops name, logo, and trademarks of Bitloops Ltd and Bitloops S.A..
728 Bytes
Loading

language-configuration.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@
1717
["[", "]"],
1818
["(", ")"],
1919
["\"", "\""],
20-
["'", "'"]
20+
["'", "'"],
21+
["`", "`"]
2122
],
2223
// symbols that can be used to surround a selection
2324
"surroundingPairs": [
2425
["{", "}"],
2526
["[", "]"],
2627
["(", ")"],
2728
["\"", "\""],
28-
["'", "'"]
29+
["'", "'"],
30+
["`", "`"]
2931
]
3032
}

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
},
1010
"icon": "assets/images/Bitloops-Icon-256x256.png",
1111
"license": "MIT",
12-
"version": "0.0.2",
12+
"version": "0.0.3",
13+
"scripts": {
14+
"vs:package": "vsce package",
15+
"vs:publish": "vsce publish"
16+
},
1317
"engines": {
1418
"vscode": "^1.70.0"
1519
},
@@ -21,7 +25,11 @@
2125
"id": "bitloops",
2226
"aliases": ["Bitloops", "bitloops"],
2327
"extensions": [".bl"],
24-
"configuration": "./language-configuration.json"
28+
"configuration": "./language-configuration.json",
29+
"icon": {
30+
"light": "./assets/images/bitloops-language-logo@3x.png",
31+
"dark": "./assets/images/bitloops-language-logo@3x.png"
32+
}
2533
}],
2634
"grammars": [{
2735
"language": "bitloops",

syntaxes/bitloops.tmLanguage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"keywords": {
1414
"patterns": [{
1515
"name": "keyword.control.bitloops",
16-
"match": "\\b(if|while|for|return)\\b"
16+
"match": "\\b(if|while|for|return|ValueObject|DTO|Props|RESTController|UseCase|Feature|string|optional|const|let|boolean)\\b"
1717
}]
1818
},
1919
"strings": {

0 commit comments

Comments
 (0)