Skip to content

Commit 55869f1

Browse files
authored
Merge pull request #2161 from contentstack/feat/DX-3598
feat: taxonomy localization support in export, import & migration plugin
2 parents 41643af + 6552069 commit 55869f1

File tree

7 files changed

+483
-186
lines changed

7 files changed

+483
-186
lines changed

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Install dependencies for all plugins
2020
run: |
21-
npm run setup-repo-old
21+
NODE_ENV=PREPACK_MODE npm run setup-repo-old
2222
2323
- name: Run tests for Contentstack Command
2424
working-directory: ./packages/contentstack-command

packages/contentstack-export/src/export/modules/base-class.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export default abstract class BaseClass {
183183
case 'export-taxonomy':
184184
return this.stack
185185
.taxonomy(uid)
186-
.export()
186+
.export(queryParam)
187187
.then((response: any) => resolve({ response, uid }))
188188
.catch((error: any) => reject({ error, uid }));
189189
default:

0 commit comments

Comments
 (0)