File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
3
if ( process . env . CI ) {
4
- process . exit ( ) ;
4
+ process . exit ( 0 ) ;
5
5
}
6
6
7
7
import { writeFile , existsSync } from 'fs' ;
@@ -42,7 +42,7 @@ to work as it should: { presets: ["@anolilab/babel-preset"] }.`);
42
42
43
43
console . log ( "😎 Everything went well, have fun!" ) ;
44
44
45
- process . exit ( ) ;
45
+ process . exit ( 0 ) ;
46
46
} catch ( err ) {
47
47
console . log ( "😬 something went wrong:" ) ;
48
48
console . error ( err . message ) ;
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
3
if ( process . env . CI ) {
4
- process . exit ( ) ;
4
+ process . exit ( 0 ) ;
5
5
}
6
6
7
7
import { writeFile , existsSync } from 'fs' ;
@@ -145,7 +145,7 @@ const writePrettierIgnore = () => {
145
145
146
146
console . log ( "😎 Everything went well, have fun!" ) ;
147
147
148
- process . exit ( ) ;
148
+ process . exit ( 0 ) ;
149
149
} catch ( err ) {
150
150
console . log ( "😬 something went wrong:" ) ;
151
151
console . error ( err . message ) ;
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
3
if ( process . env . CI ) {
4
- process . exit ( ) ;
4
+ process . exit ( 0 ) ;
5
5
}
6
6
7
7
import { writeFile , existsSync } from 'fs' ;
@@ -58,7 +58,7 @@ const writePrettierIgnore = () => {
58
58
59
59
console . log ( "😎 Everything went well, have fun!" ) ;
60
60
61
- process . exit ( ) ;
61
+ process . exit ( 0 ) ;
62
62
} catch ( err ) {
63
63
console . log ( "😬 something went wrong:" ) ;
64
64
console . error ( err . message ) ;
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
3
if ( process . env . CI ) {
4
- process . exit ( ) ;
4
+ process . exit ( 0 ) ;
5
5
}
6
6
7
7
import { writeFile , existsSync } from 'fs' ;
@@ -63,7 +63,7 @@ node_modules/**
63
63
64
64
console . log ( "😎 Everything went well, have fun!" ) ;
65
65
66
- process . exit ( ) ;
66
+ process . exit ( 0 ) ;
67
67
} catch ( err ) {
68
68
console . log ( "😬 something went wrong:" ) ;
69
69
console . error ( err . message ) ;
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
3
if ( process . env . CI ) {
4
- process . exit ( ) ;
4
+ process . exit ( 0 ) ;
5
5
}
6
6
7
7
import { writeFile , existsSync } from 'fs' ;
@@ -182,7 +182,7 @@ to work as it should: ${content}.`);
182
182
183
183
console . log ( "😎 Everything went well, have fun!" ) ;
184
184
185
- process . exit ( ) ;
185
+ process . exit ( 0 ) ;
186
186
} catch ( err ) {
187
187
console . log ( "😬 something went wrong:" ) ;
188
188
console . error ( err . message ) ;
You can’t perform that action at this time.
0 commit comments