@polylith/builder 0.2.12 → 0.2.14

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 +2 -1
package/App.js CHANGED
@@ -821,11 +821,11 @@ export default class App {
821
821
  }
822
822
 
823
823
  if (event.code === 'BUNDLE_START') {
824
- console.log(cc.set('fg_green', 'building...'));
824
+ console.log(cc.set('fg_blue', 'building...'));
825
825
  }
826
826
 
827
827
  if (event.code === 'BUNDLE_END') {
828
- console.log(cc.set('fg_green', 'build complete'))
828
+ console.log(cc.set('fg_blue', 'build complete'))
829
829
  }
830
830
  }.bind(this));
831
831
  return true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polylith/builder",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
4
4
  "description": "The polylith builder",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -19,6 +19,7 @@
19
19
  "@babel/preset-env": "^7.16.11",
20
20
  "@babel/preset-react": "^7.16.7",
21
21
  "@ondohers/console-colors": "^0.1.1",
22
+ "@polylith/core": "^0.1.9",
22
23
  "@rollup/plugin-babel": "^5.3.0",
23
24
  "@rollup/plugin-commonjs": "^24.0.0",
24
25
  "@rollup/plugin-json": "^5.0.2",