mam 1.11.803 → 1.11.805

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.
package/node.mjs CHANGED
@@ -7455,7 +7455,8 @@ var $;
7455
7455
  }
7456
7456
  expressFiler() {
7457
7457
  return $node.express.static($node.path.resolve(this.rootPublic()), {
7458
- maxAge: this.cacheTime()
7458
+ maxAge: this.cacheTime(),
7459
+ dotfiles: 'allow'
7459
7460
  });
7460
7461
  }
7461
7462
  expressDirector() {
package/node.test.js CHANGED
@@ -7446,7 +7446,8 @@ var $;
7446
7446
  }
7447
7447
  expressFiler() {
7448
7448
  return $node.express.static($node.path.resolve(this.rootPublic()), {
7449
- maxAge: this.cacheTime()
7449
+ maxAge: this.cacheTime(),
7450
+ dotfiles: 'allow'
7450
7451
  });
7451
7452
  }
7452
7453
  expressDirector() {