Redningsselskapet / nestjs-plugins

Plugins for NestJS framework
ISC License
27 stars 22 forks source link

Fix durable name cannot contain `.` error #29

Closed chgc closed 2 years ago

chgc commented 2 years ago

If subject has more than one dot (eg. time.us.east.atlanta) will cause durable name canoot contains . error. use String.replaceAll will actually replace all . to _.

kenguru33 commented 2 years ago

Just one minor thing, replaceAll is not available in es2017. Setting the target to es2021 fixed it.

Anyway, I appreciated your pull request. Thanks 🙂