@polylith/builder 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/App.js +2 -2
  2. package/package.json +1 -1
package/App.js CHANGED
@@ -130,8 +130,8 @@ export default class App {
130
130
  }
131
131
 
132
132
  async sendIndex(res) {
133
- var path = path.join(this.root, this.htmlTemplate.destination);
134
- res.sendFile(path)
133
+ var indexPath = path.join(this.root, this.htmlTemplate.destination);
134
+ res.sendFile(indexPath)
135
135
  }
136
136
 
137
137
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polylith/builder",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "The polylith builder",
5
5
  "main": "index.js",
6
6
  "type": "module",