File tree Expand file tree Collapse file tree 5 files changed +1045
-984
lines changed Expand file tree Collapse file tree 5 files changed +1045
-984
lines changed Original file line number Diff line number Diff line change 4
4
"bin" : " ./dist/index.js" ,
5
5
"type" : " module" ,
6
6
"scripts" : {
7
- "cleanNodeModules" : " pnpm -r exec rm -rf node_modules" ,
7
+ "cleanNodeModules" : " rm -rf node_modules && pnpm -r exec rm -rf node_modules" ,
8
8
"build" : " nx run-many --target=build --parallel 5" ,
9
9
"cipublish" : " node scripts/publish.js" ,
10
10
"dev" : " nx run-many --target=dev --parallel 10" ,
Original file line number Diff line number Diff line change @@ -35,14 +35,16 @@ export function createUIEnvironment(
35
35
} ,
36
36
info : ( title ?: string , message ?: string ) => {
37
37
log . info (
38
- `${ title ? chalk . red ( title ) : '' } ${ message ? chalk . green ( message ) : '' } ` ,
38
+ `${ title ? chalk . red ( title ) : '' } ${ message ? '\n' + chalk . green ( message ) : '' } ` ,
39
39
)
40
40
} ,
41
41
error : ( title ?: string , message ?: string ) => {
42
- log . error ( `${ title ? `${ title } : ` : '' } ${ message } ` )
42
+ log . error (
43
+ `${ title ? `${ title } : ` : '' } ${ message ? '\n' + message : '' } ` ,
44
+ )
43
45
} ,
44
46
warn : ( title ?: string , message ?: string ) => {
45
- log . warn ( `${ title ? `${ title } : ` : '' } ${ message } ` )
47
+ log . warn ( `${ title ? `${ title } : ` : '' } ${ message ? '\n' + message : '' } ` )
46
48
} ,
47
49
confirm : async ( message : string ) => {
48
50
const shouldContinue = await confirm ( {
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export async function writeFiles(
107
107
108
108
if ( ! forced && overwrittenFiles . length ) {
109
109
environment . warn (
110
- 'The following will be overwritten: ' ,
110
+ 'The following will be overwritten' ,
111
111
[ ...overwrittenFiles , ...output . deletedFiles ] . join ( '\n' ) ,
112
112
)
113
113
const shouldContinue = await environment . confirm ( 'Do you want to continue?' )
Original file line number Diff line number Diff line change 39
39
"@tanstack/react-router-devtools" : " ^1.114.3" ,
40
40
"@tanstack/react-router-with-query" : " ^1.114.3" ,
41
41
"@tanstack/react-start" : " ^1.114.3" ,
42
- "@tanstack/react-store" : " ^0.7.0" ,
43
42
"@tanstack/router-plugin" : " ^1.114.3" ,
44
43
"@uiw/codemirror-theme-github" : " ^4.23.10" ,
45
44
"@uiw/react-codemirror" : " ^4.23.10" ,
You can’t perform that action at this time.
0 commit comments