Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ fileignoreconfig:
- filename: package-lock.json
checksum: 6ff9c8334d085a39cbda0377f9b36f1af3f3735f62d9372c0e51efaa4f4a960e
- filename: pnpm-lock.yaml
checksum: 55c56cfbb8057c4586594bf99ccc68e1f171fbf77ea49a5934ba7d2c52a2626a
checksum: d02a60a70a50b191dcb746ce9644b01202957e6b5fb56cdaa564d7105623bb9d
- filename: packages/contentstack-import-setup/test/unit/backup-handler.test.ts
checksum: 0582d62b88834554cf12951c8690a73ef3ddbb78b82d2804d994cf4148e1ef93
- filename: packages/contentstack-import-setup/test/config.json
Expand Down Expand Up @@ -129,4 +129,6 @@ fileignoreconfig:
checksum: c7f9801faeb300f8bd97534ac72441bde5aac625dd4beaf5531945d14d9d4db0
- filename: packages/contentstack-import/test/unit/import/modules/environments.test.ts
checksum: 58165d06d92f55be8abb04c4ecc47df775a1c47f1cee529f1be5277187700f97
- filename: packages/contentstack-import/test/unit/import/modules/locales.test.ts
checksum: 011ec3efd7a29ed274f073c8678229eaef46f33e272e7e1db1206fa1a20383f0
version: "1.0"
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/contentstack-clone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dependencies": {
"@colors/colors": "^1.6.0",
"@contentstack/cli-cm-export": "~1.20.1",
"@contentstack/cli-cm-import": "~1.28.3",
"@contentstack/cli-cm-import": "~1.28.4",
"@contentstack/cli-command": "~1.6.1",
"@contentstack/cli-utilities": "~1.14.4",
"@oclif/core": "^4.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/contentstack-import/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@contentstack/cli-cm-import",
"description": "Contentstack CLI plugin to import content into stack",
"version": "1.28.3",
"version": "1.28.4",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli/issues",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/contentstack-import/src/import/modules/locales.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default class ImportLocales extends BaseClass {

const langUpdateRequest = this.stackAPIClient.locale(sourceMasterLanguage.code);
langUpdateRequest.name = sourceMasterLanguage.name;
await langUpdateRequest.update().catch(function (error: Error) {
await langUpdateRequest.update().catch((error: Error) => {
log.debug('Error updating master language name', this.config.context);
handleAndLogError(error, { ...this.config.context });
});
Expand Down Expand Up @@ -245,4 +245,4 @@ export default class ImportLocales extends BaseClass {
concurrencyLimit: this.reqConcurrency,
});
}
}
}
Loading
Loading