@ngx-grpc/protoc-gen-ng
Advanced tools
Comparing version 0.6.4 to 0.6.5
@@ -0,1 +1,8 @@ | ||
## [0.6.5](https://github.com/ngx-grpc/protoc-gen-ng/compare/v0.6.4...v0.6.5) (2020-06-23) | ||
### Bug Fixes | ||
* handle underscores in package and file names, also include test proto that would fail to compile if underscores were not matched by the regex ([d367a91](https://github.com/ngx-grpc/protoc-gen-ng/commit/d367a91df6419aa42d96c20435750b18af6d6faa)) | ||
## [0.6.4](https://github.com/ngx-grpc/protoc-gen-ng/compare/v0.6.3...v0.6.4) (2020-06-08) | ||
@@ -2,0 +9,0 @@ |
@@ -74,3 +74,3 @@ "use strict"; | ||
var meta = this.resolveTypeMetadata(pbType); | ||
var _a = pbType.match(/^\.(([a-z0-9.]*)\.)?([A-Za-z0-9.]+$)/), typeName = _a[3]; | ||
var _a = pbType.match(/^\.(([a-z0-9._]*)\.)?([A-Za-z0-9._]+$)/), typeName = _a[3]; | ||
if (meta.proto === this) { | ||
@@ -77,0 +77,0 @@ return (thisProtoPackageName ? thisProtoPackageName + '.' : '') + typeName; |
@@ -66,3 +66,3 @@ { | ||
}, | ||
"version": "0.6.4" | ||
"version": "0.6.5" | ||
} |
101638