Skip to content

Commit 3ae0c02

Browse files
author
Michal Paukert
committed
Update logging configuration
1 parent 4546ded commit 3ae0c02

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"chalk": "^4.0.0",
4949
"yargs": "^15.3.1",
5050
"@kentico/kontent-management": "~0.3.19",
51-
"@kentico/kontent-backup-manager": "~1.2.0",
51+
"@kentico/kontent-backup-manager": "~1.2.2",
5252
"dotenv": "^8.2.0"
5353
},
5454
"peerDependencies": {

src/cmds/backup.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import yargs from 'yargs';
22
import chalk from 'chalk';
33
import { environmentConfigExists, getEnvironmentsConfig } from '../utils/environmentUtils';
4-
import { CleanService, ExportService, ImportService, ZipService } from '@kentico/kontent-backup-manager/_commonjs/src';
4+
import { CleanService, ExportService, ImportService, ZipService } from '@kentico/kontent-backup-manager';
55

66
const kontentBackupCommand: yargs.CommandModule = {
77
command: 'backup',
@@ -21,9 +21,9 @@ const kontentBackupCommand: yargs.CommandModule = {
2121
},
2222
log: {
2323
alias: 'l',
24-
describe: 'Enable logging',
24+
describe: 'Enables/Disables logging (default: enabled)',
2525
type: 'boolean',
26-
default: false,
26+
default: true,
2727
},
2828
'project-id': {
2929
alias: 'p',

0 commit comments

Comments
 (0)