deploy-bbc 1.2.3 → 1.2.4
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/dist/index.js +15 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5940,18 +5940,23 @@ var run_cli = async () => {
|
|
|
5940
5940
|
if (cliOptions.CI) {
|
|
5941
5941
|
return build_from_flags(cliProvidedName, cliOptions);
|
|
5942
5942
|
}
|
|
5943
|
+
const blue = "\x1B[38;5;75m";
|
|
5944
|
+
const gray = "\x1B[90m";
|
|
5945
|
+
const reset = "\x1B[0m";
|
|
5943
5946
|
const intro = `
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5950
|
-
|
|
5951
|
-
|
|
5952
|
-
|
|
5947
|
+
${gray}____________________________________________________________________${reset}
|
|
5948
|
+
${gray}/ \\${reset}
|
|
5949
|
+
${gray}|${reset} ${blue}█▀▀▄ █▀▀ █▀▀█ █ █▀▀█ █ █ █▀▀▄ █▀▀▄ █▀▀${reset} ${gray}|${reset}
|
|
5950
|
+
${gray}|${reset} ${blue}█ █ █▀▀ █ █ █ █ █ █▄▄█ █▀▀▄ █▀▀▄ █${reset} ${gray}|${reset}
|
|
5951
|
+
${gray}|${reset} ${blue}█▄▄▀ ▀▀▀ █▀▀▀ ▀▀▀ ▀▀▀▀ ▄▄▄█ █▄▄▀ █▄▄▀ ▀▀▀${reset} ${gray}|${reset}
|
|
5952
|
+
${gray}|${reset} ${gray}|${reset}
|
|
5953
|
+
${gray}|${reset} \uD83D\uDE80 ${blue}Best Backend Code${reset} ${gray}|${reset}
|
|
5954
|
+
${gray}|${reset} ${gray}|${reset}
|
|
5955
|
+
${gray}|${reset} ${gray}Bootstrap production-ready backends with Bun & TypeScript${reset} ${gray}|${reset}
|
|
5956
|
+
${gray}|${reset} ${gray}[ Bun ] ---------- [ TypeScript ] ---------- [ Docker ]${reset} ${gray}|${reset}
|
|
5957
|
+
${gray}\\____________________________________________________________________/${reset}
|
|
5953
5958
|
`;
|
|
5954
|
-
console.log(
|
|
5959
|
+
console.log(intro);
|
|
5955
5960
|
Ie(source_default.bgCyan(source_default.black(" deploy-bbc ")));
|
|
5956
5961
|
const project = await Ce({
|
|
5957
5962
|
...add_cli_header("\uD83D\uDCE6 CORE"),
|