@microsoft/teamsfx 2.3.1-alpha.a83cb5166.0 → 2.3.1-alpha.a86c4a413.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2669,7 +2669,8 @@ class NotificationMiddleware {
2669
2669
  */
2670
2670
  class LocalFileStorage {
2671
2671
  constructor(fileDir) {
2672
- this.localFileName = ".notification.localstore.json";
2672
+ var _a;
2673
+ this.localFileName = (_a = process.env.TEAMSFX_NOTIFICATION_STORE_FILENAME) !== null && _a !== void 0 ? _a : ".notification.localstore.json";
2673
2674
  this.filePath = path__namespace.resolve(fileDir, this.localFileName);
2674
2675
  }
2675
2676
  read(key) {