create-jilatax 0.1.1 → 0.1.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.
package/dist/bin.cjs
CHANGED
package/dist/bin.js
CHANGED
|
@@ -380,7 +380,13 @@ function titleCase(value) {
|
|
|
380
380
|
function printWelcome(version) {
|
|
381
381
|
const reset = "\x1B[0m";
|
|
382
382
|
const cyan = "\x1B[36m";
|
|
383
|
-
|
|
383
|
+
const brightCyan = "\x1B[96m";
|
|
384
|
+
const green = "\x1B[32m";
|
|
385
|
+
const bold = "\x1B[1m";
|
|
386
|
+
const dim = "\x1B[2m";
|
|
387
|
+
const mascot = [`${cyan}╲╲_${brightCyan}╱╱${reset}`, `${cyan}(${green}●${cyan}▽${green}●${cyan})${reset}`];
|
|
388
|
+
const welcome = [`${bold}${brightCyan}JILATAX${reset} ${dim}v${version}${reset}`, `${dim}Welcome.${reset} Build your next Android-first app.`];
|
|
389
|
+
console.log(`${mascot.map((line, index) => `${line} ${welcome[index]}`).join("\n")}\n`);
|
|
384
390
|
}
|
|
385
391
|
function startInstallProgress() {
|
|
386
392
|
const reset = "\x1B[0m";
|
|
@@ -404,7 +404,13 @@ function titleCase(value) {
|
|
|
404
404
|
function printWelcome(version) {
|
|
405
405
|
const reset = "\x1B[0m";
|
|
406
406
|
const cyan = "\x1B[36m";
|
|
407
|
-
|
|
407
|
+
const brightCyan = "\x1B[96m";
|
|
408
|
+
const green = "\x1B[32m";
|
|
409
|
+
const bold = "\x1B[1m";
|
|
410
|
+
const dim = "\x1B[2m";
|
|
411
|
+
const mascot = [`${cyan}╲╲_${brightCyan}╱╱${reset}`, `${cyan}(${green}●${cyan}▽${green}●${cyan})${reset}`];
|
|
412
|
+
const welcome = [`${bold}${brightCyan}JILATAX${reset} ${dim}v${version}${reset}`, `${dim}Welcome.${reset} Build your next Android-first app.`];
|
|
413
|
+
console.log(`${mascot.map((line, index) => `${line} ${welcome[index]}`).join("\n")}\n`);
|
|
408
414
|
}
|
|
409
415
|
function startInstallProgress() {
|
|
410
416
|
const reset = "\x1B[0m";
|
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const require_cli = require("./cli-
|
|
2
|
+
const require_cli = require("./cli-DE3ovkQR.cjs");
|
|
3
3
|
exports.createHelpText = require_cli.createHelpText;
|
|
4
4
|
exports.createProject = require_cli.createProject;
|
|
5
5
|
exports.defaultPackageId = require_cli.defaultPackageId;
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as normalizeDisplayName, i as defaultPackageId, n as runCreateCli, o as normalizeProjectName, r as createProject, s as validatePackageId, t as createHelpText } from "./cli-
|
|
1
|
+
import { a as normalizeDisplayName, i as defaultPackageId, n as runCreateCli, o as normalizeProjectName, r as createProject, s as validatePackageId, t as createHelpText } from "./cli-Bd5vJvDf.js";
|
|
2
2
|
export { createHelpText, createProject, defaultPackageId, normalizeDisplayName, normalizeProjectName, runCreateCli, validatePackageId };
|