Skip to content

Commit

Permalink
refactor: taxonomy export & import
Browse files Browse the repository at this point in the history
  • Loading branch information
aman19K committed Sep 26, 2023
1 parent 1f1b747 commit 0fc7e72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import omit from 'lodash/omit';
import keys from 'lodash/keys';
import isEmpty from 'lodash/isEmpty';
import flatten from 'lodash/flatten';
import keys from 'lodash/keys';
import { resolve as pResolve } from 'node:path';
import { cliux, configHandler, HttpClient } from '@contentstack/cli-utilities';

Expand Down
8 changes: 4 additions & 4 deletions packages/contentstack-import/src/import/modules/taxonomies.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import isEmpty from 'lodash/isEmpty';
import values from 'lodash/values';
import keys from 'lodash/keys';
import flatten from 'lodash/flatten';
import { join } from 'node:path';
import values from 'lodash/values';
import isEmpty from 'lodash/isEmpty';
import flatten from 'lodash/flatten';
import { configHandler } from '@contentstack/cli-utilities';

import { log, formatError, fsUtil, fileHelper } from '../../utils';
import BaseClass, { ApiOptions } from './base-class';
import { log, formatError, fsUtil, fileHelper } from '../../utils';
import { ModuleClassParams, TaxonomiesConfig, TermsConfig } from '../../types';

//NOTE: Temp types need to remove once sdk available
Expand Down

0 comments on commit 0fc7e72

Please sign in to comment.