1
1
const output = require ( './console/output' ) ;
2
2
const outputDev = require ( './console/outputDev' ) ;
3
- const load = require ( "ora" ) ;
3
+ const loader = require ( './console/loader' ) ;
4
4
const fs = require ( "fs-extra" ) ;
5
5
const path = require ( "path" ) ;
6
6
const pc = require ( "picocolors" ) ;
@@ -15,8 +15,7 @@ async function build(options) {
15
15
const startTime = Date . now ( ) ;
16
16
// close spin if dev
17
17
await outputDev ( "Spinners are disabled in dev mode" ) ;
18
- const spinner = fs . pathExistsSync ( path . join ( process . cwd ( ) , "ondev.key" ) ) ? { } :
19
- load ( "Building project..." ) . start ( ) ;
18
+ const load = new loader ( "Building project" , "Checking project" , 6 ) ;
20
19
await outputDev ( "Building project..." ) ;
21
20
await outputDev ( `spawn in ${ process . cwd ( ) } ` ) ;
22
21
await outputDev ( "" )
@@ -35,45 +34,49 @@ async function build(options) {
35
34
return
36
35
}
37
36
37
+ load . update ( "Checking output dir" , 1 ) ;
38
+
38
39
// setup input dir
39
40
// if not exists
40
41
if ( ! fs . existsSync ( path . join ( process . cwd ( ) , outputDir ) ) ) {
41
42
// create output dir
42
43
await outputDev ( `Creating dir ${ path . join ( process . cwd ( ) , outputDir ) } ` ) ;
43
- spinner . text = "Creating output dir..." ;
44
+ load . update ( "Creating output dir" , 2 ) ;
44
45
fs . mkdirSync ( path . join ( process . cwd ( ) , outputDir ) ) ;
45
46
} else {
46
47
// clear output dir
47
48
await outputDev ( `Clearing dir ${ path . join ( process . cwd ( ) , outputDir ) } ` ) ;
48
- spinner . text = "Clearing output dir..." ;
49
+ load . update ( "Clearing output dir" , 2 ) ;
49
50
fs . emptyDirSync ( path . join ( process . cwd ( ) , outputDir ) ) ;
50
51
}
51
52
52
53
// run vite build
53
54
await outputDev ( "Running vite build..." ) ;
54
- spinner . text = "Building project..." ;
55
+ load . update ( "Building project" , 3 ) ;
55
56
const { exec} = require ( "child_process" ) ;
56
57
exec ( `vite build` , { cwd : process . cwd ( ) } , ( err ) => {
57
58
if ( err ) {
58
- spinner . stop ( ) ;
59
+ load . end ( ) ;
59
60
outputDev ( "Error: vite build error" ) ;
60
61
outputDev ( "Program exit by error" ) ;
61
62
output ( "There was an error building the project, open dev mode to see more info" , "red" ) ;
62
63
return
63
64
}
64
65
// find fastjs_build_temp
65
66
if ( ! fs . existsSync ( path . join ( process . cwd ( ) , "fastjs_build_temp" ) ) ) {
66
- spinner . stop ( ) ;
67
+ load . end ( ) ;
67
68
outputDev ( "Error: fastjs_build_temp not found" ) ;
68
69
outputDev ( "Program exit by error" ) ;
69
70
output ( "There was an error building the project, open dev mode to see more info" , "red" ) ;
70
71
return
71
72
}
72
73
// move to output dir
73
74
outputDev ( "Moving files to output dir..." ) ;
75
+ load . update ( "Moving files to output dir" , 4 ) ;
74
76
fs . copySync ( path . join ( process . cwd ( ) , "fastjs_build_temp" ) , path . join ( process . cwd ( ) , outputDir ) ) ;
75
77
// remove fastjs_build_temp
76
78
outputDev ( "Removing fastjs_build_temp..." ) ;
79
+ load . update ( "Removing temp" , 5 ) ;
77
80
fs . removeSync ( path . join ( process . cwd ( ) , "fastjs_build_temp" ) ) ;
78
81
// check fastjs_build_temp
79
82
const printList = [ ]
@@ -111,7 +114,7 @@ async function build(options) {
111
114
}
112
115
readDir ( "\\" )
113
116
// show success
114
- spinner . stop ( ) ;
117
+ load . end ( ) ;
115
118
output ( `${ pc . bold ( "[Fastjs-cli]" ) } ` , "green" ) ;
116
119
output ( "" )
117
120
output ( `*green*${ pc . bold ( "Fastjs-cli" ) } v${ Version } *green* build success in ${ Date . now ( ) - startTime } ms` ) ;
0 commit comments