Skip to content

Commit

Permalink
ascii art on build
Browse files Browse the repository at this point in the history
  • Loading branch information
KilledByAPixel committed Jan 9, 2024
1 parent 34cb120 commit 17273cd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/engineBuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,16 @@ const engineSourceFiles =
`${SOURCE_FOLDER}/engineWebGL.js`,
`${SOURCE_FOLDER}/engine.js`,
];

console.log('Choo Choo... Building LittleJS Engine!');
const asciiArt =`
~~~~°°°°ooo°oOo°ooOooOooOo.
__________ ________ ____ '°OoO.
|LittleJS| |Engine| |[]|_._._Y
.|________|_._|______|_._|__|_|_|_|}
OOO OOO OO OO OO=OO---oo\\
`;

console.log(asciiArt);
console.log('Choo Choo... Building LittleJS Engine!\n');
const startTime = Date.now();
const fs = require('node:fs');
const child_process = require('node:child_process');
Expand Down

0 comments on commit 17273cd

Please sign in to comment.