File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import fs from "fs";
7
7
8
8
// Displays the text in the console
9
9
let meta = JSON . parse ( fs . readFileSync ( "package.json" , "utf-8" ) ) ;
10
+ console . log ( "" ) ;
10
11
console . log (
11
12
CONSOLE_COLORS . FgGreen ,
12
13
"┌─────────────────────────────────────────────────────────────────────────┐"
Original file line number Diff line number Diff line change 1
1
import { arg_objects } from "./arg-parser.js" ;
2
2
import { toKebabCase } from "../util/util.js" ;
3
- import prompt from "prompt" ;
4
3
import { ALL_ARGS_TYPES } from "../util/const.js" ;
5
4
import * as hooks from "../hooks/index.js" ;
6
5
import { Log } from "../log/index.js" ;
Original file line number Diff line number Diff line change @@ -22,9 +22,12 @@ const highlight = (text) => {
22
22
23
23
const segementStart = ( text ) => {
24
24
console . log ( `----------------- Start: ${ text } -----------------------` ) ;
25
+ console . log ( "" ) ;
25
26
} ;
26
27
const segementEnd = ( text ) => {
27
- console . log ( `----------------- Start: ${ text } -----------------------` ) ;
28
+ console . log ( "" ) ;
29
+ console . log ( `----------------- End: ${ text } -----------------------` ) ;
30
+ console . log ( "" ) ;
28
31
} ;
29
32
30
33
const newLine = ( text ) => {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " create-react-play" ,
3
- "version" : " 0.0.5 " ,
3
+ "version" : " 0.0.7 " ,
4
4
"description" : " Boiler plate for creating a play within reactplay system" ,
5
5
"main" : " index.js" ,
6
6
"bin" : {
20
20
"homepage" : " https://reactplay.io/" ,
21
21
"dependencies" : {
22
22
"axios" : " ^0.27.2" ,
23
- "child-process" : " ^1.0.2" ,
24
23
"dotenv" : " ^16.0.1" ,
25
- "json-graphql-parser" : " ^0.0.9" ,
26
- "prompt" : " ^1.3.0"
24
+ "json-graphql-parser" : " ^0.0.9"
27
25
},
28
26
"repository" : " git://github.com/reactplay/create-react-play.git" ,
29
27
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments