bimba-cli 0.3.1 → 0.3.2

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/index.js +3 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -99,7 +99,7 @@ async function bundle() {
99
99
 
100
100
  const start = Date.now();
101
101
 
102
- console.log("──────────────────────────────────────────────────────────────────────");
102
+ console.log(theme.folder("──────────────────────────────────────────────────────────────────────"));
103
103
  console.log(theme.start(`Start building the Imba entrypoint: ${theme.filedir(entrypoint)}`));
104
104
 
105
105
  let result = undefined
@@ -125,10 +125,10 @@ async function bundle() {
125
125
  }
126
126
  }
127
127
  catch(error) {
128
- console.log('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~')
128
+ console.log(theme.folder("──────────────────────────────────────────────────────────────────────"));
129
129
  console.log('')
130
130
  console.log(error)
131
- console.log('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~')
131
+ console.log(theme.folder("──────────────────────────────────────────────────────────────────────"));
132
132
  console.log(theme.failure(" Failure ") + theme.filename(' Bun found an error in the compiled JS file'))
133
133
  }
134
134
  finally {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bimba-cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/HeapVoid/bimba.git"