File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
const fs = require ( 'fs' )
2
2
const Firestore = require ( './utils/firestore.js' )
3
3
const config = require ( 'config' )
4
- const logger = require ( './utils/logger' )
5
4
6
5
// check whether github credentials are not falsy
7
6
if (
@@ -35,5 +34,7 @@ if (!firestoreData) {
35
34
throw new Error ( 'Problem with permission of read and write.\nCheck your firestore permissions' )
36
35
}
37
36
await docRef . delete ( )
38
- logger . info ( 'Success! The backend was successfully set up.' )
37
+
38
+ // eslint-disable-next-line no-console
39
+ console . log ( 'Success! The backend was successfully set up.' )
39
40
} ) ( )
Original file line number Diff line number Diff line change 1
1
const swaggerJsDoc = require ( 'swagger-jsdoc' )
2
+ const config = require ( 'config' )
2
3
3
4
/**
4
5
* Read more on: https://swagger.io/docs/specification/about
You can’t perform that action at this time.
0 commit comments