File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# ko
2
2
3
+ ## 6.5.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 22089fe9: scriptLoader with antlr4ng
8
+
3
9
## 6.5.10
4
10
5
11
### Patch Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ko" ,
3
- "version" : " 6.5.10 " ,
3
+ "version" : " 6.5.11 " ,
4
4
"description" : " build & lint library" ,
5
5
"keywords" : [
6
6
" ko" ,
Original file line number Diff line number Diff line change @@ -23,13 +23,15 @@ class Script {
23
23
} ,
24
24
} ,
25
25
{
26
- test : / \. ( t | j ) s x ? $ / ,
26
+ test : / \. m ? ( t | j ) s x ? $ / ,
27
27
include : ( input : string ) => {
28
28
// internal modules dt-common compatible
29
29
if ( input . includes ( 'node_modules/dt-common/src/' ) ) {
30
30
return true ;
31
31
} else if ( input . includes ( 'antlr4-c3' ) ) {
32
32
return true ;
33
+ } else if ( input . includes ( 'antlr4ng' ) ) {
34
+ return true ;
33
35
} else if ( input . includes ( 'node_modules' ) ) {
34
36
return false ;
35
37
} else {
You can’t perform that action at this time.
0 commit comments