vovk-cli 0.0.1-draft.167 → 0.0.1-draft.168

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,6 +7,7 @@ import keyBy from 'lodash/keyBy.js';
7
7
  import capitalize from 'lodash/capitalize.js';
8
8
  import debounce from 'lodash/debounce.js';
9
9
  import once from 'lodash/once.js';
10
+ import isEmpty from 'lodash/isEmpty.js';
10
11
  import ensureSchemaFiles, { debouncedEnsureSchemaFiles } from './ensureSchemaFiles.mjs';
11
12
  import writeOneSegmentSchemaFile from './writeOneSegmentSchemaFile.mjs';
12
13
  import logDiffResult from './logDiffResult.mjs';
@@ -17,7 +18,6 @@ import locateSegments from '../locateSegments.mjs';
17
18
  import debounceWithArgs from '../utils/debounceWithArgs.mjs';
18
19
  import formatLoggedSegmentName from '../utils/formatLoggedSegmentName.mjs';
19
20
  import writeConfigJson from './writeConfigJson.mjs';
20
- import { isEmpty } from 'lodash';
21
21
  export class VovkDev {
22
22
  #projectInfo;
23
23
  #segments = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-cli",
3
- "version": "0.0.1-draft.167",
3
+ "version": "0.0.1-draft.168",
4
4
  "bin": {
5
5
  "vovk": "./dist/index.mjs"
6
6
  },