Skip to content

Commit

Permalink
Merge pull request #847 from samchon/features/wizard
Browse files Browse the repository at this point in the history
Print CLI output when running `npx typia setup`.
  • Loading branch information
samchon authored Oct 18, 2023
2 parents 633b62d + ec29cc0 commit 4545c08
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typia",
"version": "5.2.2",
"version": "5.2.3",
"description": "Superfast runtime validators with only one line",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/typescript-json/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-json",
"version": "5.2.2",
"version": "5.2.3",
"description": "Superfast runtime validators with only one line",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -72,7 +72,7 @@
},
"homepage": "https://typia.io",
"dependencies": {
"typia": "5.2.2"
"typia": "5.2.3"
},
"peerDependencies": {
"typescript": ">= 4.8.0"
Expand Down
4 changes: 2 additions & 2 deletions src/executable/setup/CommandExecutor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import cp from "child_process";

export namespace CommandExecutor {
export const run = (str: string): void => {
console.log(str);
cp.execSync(str, { stdio: "ignore" });
console.log(`\n$ ${str}`);
cp.execSync(str, { stdio: "inherit" });
};
}

0 comments on commit 4545c08

Please sign in to comment.