@polylith/builder 0.0.44 → 0.0.45

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/ConfigApp.js +1 -1
  2. package/package.json +1 -1
package/ConfigApp.js CHANGED
@@ -16,7 +16,7 @@ export default class ConfigApp extends App {
16
16
  this.config = config;
17
17
 
18
18
  if (!config.template || !config.template.source) throw new Error('html source not defined in config file');
19
- var source = index.template.source;
19
+ var source = config.template.source;
20
20
  var sourceFilename = path.basename(source);
21
21
  var destination = config.template.destination || path.join(dest, sourceFilename);
22
22
  this.setHtmlTemplate(source, destination);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polylith/builder",
3
- "version": "0.0.44",
3
+ "version": "0.0.45",
4
4
  "description": "The polylith builder",
5
5
  "main": "index.js",
6
6
  "type": "module",