@polylith/builder 0.2.9 → 0.2.10

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/App.js CHANGED
@@ -612,7 +612,8 @@ export default class App {
612
612
  loader(this.loadables),
613
613
  features(this.featureIndexes),
614
614
  styles(),
615
- resources(this.name, this.files, true)
615
+ resources(this.name, this.files, true),
616
+ watchLog(),
616
617
  ];
617
618
 
618
619
  var config = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polylith/builder",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "The polylith builder",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -11,7 +11,7 @@
11
11
  "repository": {
12
12
  "type": "git",
13
13
  "url": "https://github.com/Ondoher/polylith",
14
- "directory": "packages/server/builder"
14
+ "directory": "packages/builder"
15
15
  },
16
16
  "author": "Glenn Anderson",
17
17
  "license": "MIT",
package/plugin-watch.js CHANGED
@@ -5,7 +5,7 @@ export default function watch() {
5
5
  name: 'watch-log',
6
6
 
7
7
  watchChange(id, type) {
8
- console.log(`${cc.set('fg_green', type.event)} of file ${id}`)
8
+ console.log(`${cc.set('fg_green', type.event)} of file ${cc.set('fg_white', id)}`)
9
9
  return null;
10
10
  }
11
11
  };