@teambit/objects 0.0.0-c65281df432da06d33a8e9ea933aefa7f48134e9 → 0.0.0-ca9da0f59285afdecdf6fe467472a195bd2695d9

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.
Files changed (65) hide show
  1. package/dist/models/dependencies-graph.d.ts +1 -1
  2. package/dist/models/dependencies-graph.js.map +1 -1
  3. package/dist/models/export-metadata.js +0 -2
  4. package/dist/models/export-metadata.js.map +1 -1
  5. package/dist/models/lane-history.d.ts +1 -1
  6. package/dist/models/lane-history.js.map +1 -1
  7. package/dist/models/lane.d.ts +6 -5
  8. package/dist/models/lane.js.map +1 -1
  9. package/dist/models/model-component.d.ts +10 -8
  10. package/dist/models/model-component.js +0 -3
  11. package/dist/models/model-component.js.map +1 -1
  12. package/dist/models/scopeMeta.d.ts +1 -1
  13. package/dist/models/scopeMeta.js +0 -3
  14. package/dist/models/scopeMeta.js.map +1 -1
  15. package/dist/models/source.d.ts +2 -2
  16. package/dist/models/source.js +0 -1
  17. package/dist/models/source.js.map +1 -1
  18. package/dist/models/symlink.d.ts +1 -1
  19. package/dist/models/version-history.d.ts +1 -1
  20. package/dist/models/version-history.js.map +1 -1
  21. package/dist/models/version.d.ts +10 -8
  22. package/dist/models/version.js +0 -3
  23. package/dist/models/version.js.map +1 -1
  24. package/dist/objects/bit-object-list.d.ts +1 -1
  25. package/dist/objects/bit-object-list.js.map +1 -1
  26. package/dist/objects/object-list-to-graph.d.ts +2 -2
  27. package/dist/objects/object-list-to-graph.js.map +1 -1
  28. package/dist/objects/object.d.ts +2 -2
  29. package/dist/objects/object.js +0 -1
  30. package/dist/objects/object.js.map +1 -1
  31. package/dist/objects/objects-readable-generator.d.ts +4 -4
  32. package/dist/objects/objects-readable-generator.js.map +1 -1
  33. package/dist/objects/raw-object.d.ts +2 -2
  34. package/dist/objects/raw-object.js +1 -11
  35. package/dist/objects/raw-object.js.map +1 -1
  36. package/dist/objects/ref.d.ts +2 -2
  37. package/dist/objects/ref.js.map +1 -1
  38. package/dist/objects/repository-hooks.d.ts +1 -1
  39. package/dist/objects/repository-hooks.js.map +1 -1
  40. package/dist/objects/repository.d.ts +10 -7
  41. package/dist/objects/repository.js +0 -1
  42. package/dist/objects/repository.js.map +1 -1
  43. package/dist/objects/scope-index.d.ts +2 -2
  44. package/dist/objects/scope-index.js +0 -1
  45. package/dist/objects/scope-index.js.map +1 -1
  46. package/models/dependencies-graph.ts +1 -1
  47. package/models/export-metadata.ts +0 -1
  48. package/models/lane-history.ts +1 -1
  49. package/models/lane.ts +4 -3
  50. package/models/model-component.ts +13 -14
  51. package/models/scopeMeta.ts +1 -3
  52. package/models/source.ts +0 -1
  53. package/models/version-history.ts +1 -1
  54. package/models/version.ts +9 -12
  55. package/objects/bit-object-list.ts +1 -1
  56. package/objects/object-list-to-graph.ts +2 -2
  57. package/objects/object.ts +2 -3
  58. package/objects/objects-readable-generator.ts +6 -6
  59. package/objects/raw-object.ts +2 -12
  60. package/objects/ref.ts +2 -2
  61. package/objects/repository-hooks.ts +1 -1
  62. package/objects/repository.ts +13 -15
  63. package/objects/scope-index.ts +2 -3
  64. package/package.json +23 -23
  65. /package/dist/{preview-1753473188637.js → preview-1755105253195.js} +0 -0
package/models/version.ts CHANGED
@@ -3,24 +3,27 @@ import { isSnap } from '@teambit/component-version';
3
3
  import { ComponentID, ComponentIdList } from '@teambit/component-id';
4
4
  import { LaneId } from '@teambit/lane-id';
5
5
  import { v4 } from 'uuid';
6
- import { BuildStatus, DEFAULT_BUNDLE_FILENAME, Extensions } from '@teambit/legacy.constants';
6
+ import type { BuildStatus } from '@teambit/legacy.constants';
7
+ import { DEFAULT_BUNDLE_FILENAME, Extensions } from '@teambit/legacy.constants';
8
+ import type { ConsumerComponent } from '@teambit/legacy.consumer-component';
7
9
  import {
8
10
  isSchemaSupport,
9
11
  SchemaFeature,
10
12
  SchemaName,
11
13
  Dependencies,
12
14
  Dependency,
13
- ConsumerComponent,
14
15
  } from '@teambit/legacy.consumer-component';
15
16
  import { getRefsFromExtensions, SourceFile } from '@teambit/component.sources';
16
- import { ComponentOverridesData } from '@teambit/legacy.consumer-config';
17
+ import type { ComponentOverridesData } from '@teambit/legacy.consumer-config';
17
18
  import { ExtensionDataEntry, ExtensionDataList } from '@teambit/legacy.extension-data';
18
19
  import type { Doclet } from '@teambit/semantics.doc-parser';
19
20
  import { logger } from '@teambit/legacy.logger';
20
- import { getStringifyArgs, PathLinux, pathNormalizeToLinux } from '@teambit/legacy.utils';
21
+ import type { PathLinux } from '@teambit/legacy.utils';
22
+ import { getStringifyArgs, pathNormalizeToLinux } from '@teambit/legacy.utils';
21
23
  import { sha1 } from '@teambit/toolbox.crypto.sha1';
22
- import { BitObject, Ref, Repository } from '../objects';
23
- import { ObjectItem } from '../objects/object-list';
24
+ import type { Repository } from '../objects';
25
+ import { BitObject, Ref } from '../objects';
26
+ import type { ObjectItem } from '../objects/object-list';
24
27
  import { BitIdCompIdError, VersionInvalid, validateVersionInstance } from '@teambit/legacy.scope';
25
28
  import Source from './source';
26
29
  import { DependenciesGraph } from './dependencies-graph';
@@ -67,11 +70,8 @@ export type VersionProps = {
67
70
  flattenedEdges?: DepEdge[];
68
71
  flattenedEdgesRef?: Ref;
69
72
  dependenciesGraphRef?: Ref;
70
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
71
73
  packageDependencies?: { [key: string]: string };
72
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
73
74
  devPackageDependencies?: { [key: string]: string };
74
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
75
75
  peerPackageDependencies?: { [key: string]: string };
76
76
  bindingPrefix: string;
77
77
  schema?: string;
@@ -120,7 +120,6 @@ export default class Version extends BitObject {
120
120
  * (around August 2023 should be safe)
121
121
  */
122
122
  private flattenedEdges: DepEdge[];
123
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
124
123
  packageDependencies: { [key: string]: string };
125
124
  devPackageDependencies: { [key: string]: string };
126
125
  peerPackageDependencies: { [key: string]: string };
@@ -697,7 +696,6 @@ export default class Version extends BitObject {
697
696
  files: files.map(parseFile),
698
697
  bindingPrefix: component.bindingPrefix,
699
698
  log: component.log as Log,
700
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
701
699
  docs: component.docs,
702
700
  dependencies: component.dependencies.get(),
703
701
  devDependencies: component.devDependencies.get(),
@@ -711,7 +709,6 @@ export default class Version extends BitObject {
711
709
  flattenedEdgesRef: flattenedEdges?.hash(),
712
710
  schema: component.schema,
713
711
  overrides: component.overrides.componentOverridesData,
714
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
715
712
  packageJsonChangedProps: component.packageJsonChangedProps,
716
713
  extensions: component.extensions,
717
714
  buildStatus: component.buildStatus,
@@ -1,4 +1,4 @@
1
- import BitObject from './object';
1
+ import type BitObject from './object';
2
2
  import { ExportMetadata, Lane, LaneHistory, ModelComponent, Version, VersionHistory } from '../models';
3
3
 
4
4
  export class BitObjectList {
@@ -1,8 +1,8 @@
1
1
  import { Graph, Node, Edge } from '@teambit/graph.cleargraph';
2
2
  import { uniqBy } from 'lodash';
3
- import { ComponentID } from '@teambit/component-id';
3
+ import type { ComponentID } from '@teambit/component-id';
4
4
  import type { ObjectList } from './object-list';
5
- import { BitObjectList } from './bit-object-list';
5
+ import type { BitObjectList } from './bit-object-list';
6
6
  import { getAllVersionsInfo } from '@teambit/component.snap-distance';
7
7
  import { Dependency } from '@teambit/graph';
8
8
 
package/objects/object.ts CHANGED
@@ -4,9 +4,9 @@ import { NULL_BYTE, SPACE_DELIMITER } from '@teambit/legacy.constants';
4
4
  import { deflate, inflate } from '@teambit/legacy.utils';
5
5
  import { sha1 } from '@teambit/toolbox.crypto.sha1';
6
6
  import { UnknownObjectType, typesObj as types } from '@teambit/legacy.scope';
7
- import { ObjectItem } from './object-list';
7
+ import type { ObjectItem } from './object-list';
8
8
  import Ref from './ref';
9
- import Repository from './repository';
9
+ import type Repository from './repository';
10
10
 
11
11
  function parse(buffer: Buffer): BitObject {
12
12
  const { type, hash, contents } = extractHeaderAndContent(buffer);
@@ -147,7 +147,6 @@ path: ${err.path}`);
147
147
  }
148
148
 
149
149
  static makeHash(str: string | Buffer): string {
150
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
151
150
  return sha1(str);
152
151
  }
153
152
  }
@@ -1,14 +1,14 @@
1
1
  import pMapSeries from 'p-map-series';
2
2
  import { BitError } from '@teambit/bit-error';
3
3
  import { Readable } from 'stream';
4
- import BitObject from './object';
5
- import Repository from './repository';
6
- import Ref from './ref';
7
- import { Scope } from '@teambit/legacy.scope';
4
+ import type BitObject from './object';
5
+ import type Repository from './repository';
6
+ import type Ref from './ref';
7
+ import type { Scope } from '@teambit/legacy.scope';
8
8
  import { logger } from '@teambit/legacy.logger';
9
9
  import { getAllVersionHashesMemoized } from '@teambit/component.snap-distance';
10
- import { Lane, LaneHistory, ModelComponent, Version } from '../models';
11
- import { ObjectItem } from './object-list';
10
+ import type { Lane, LaneHistory, ModelComponent, Version } from '../models';
11
+ import type { ObjectItem } from './object-list';
12
12
 
13
13
  export type ComponentWithCollectOptions = {
14
14
  component: ModelComponent;
@@ -1,14 +1,13 @@
1
1
  import { NULL_BYTE, SPACE_DELIMITER } from '@teambit/legacy.constants';
2
2
  import { getStringifyArgs, inflate } from '@teambit/legacy.utils';
3
3
  import { typesObj as types } from '@teambit/legacy.scope';
4
- import BitObject from './object';
4
+ import type BitObject from './object';
5
5
  import { clone } from 'lodash';
6
6
 
7
7
  export default class BitRawObject {
8
8
  headers: string[];
9
9
  type: string;
10
10
  content: Buffer;
11
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
12
11
  parsedContent: any;
13
12
  _ref: string;
14
13
 
@@ -17,7 +16,6 @@ export default class BitRawObject {
17
16
  ref: string | null | undefined,
18
17
  type: string | null | undefined,
19
18
  content: Buffer | null | undefined,
20
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
21
19
  parsedContent: any | null | undefined
22
20
  ) {
23
21
  let headers;
@@ -72,17 +70,14 @@ export default class BitRawObject {
72
70
  }
73
71
  }
74
72
 
75
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
76
73
  set ref(ref: string) {
77
74
  this._ref = ref;
78
75
  }
79
76
 
80
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
81
77
  get ref(): string {
82
78
  return this._ref;
83
79
  }
84
80
 
85
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
86
81
  get id(): string {
87
82
  switch (this.type) {
88
83
  case 'Version':
@@ -114,11 +109,7 @@ export default class BitRawObject {
114
109
  return [];
115
110
  }
116
111
 
117
- static async fromDeflatedBuffer(
118
- fileContents: Buffer,
119
- ref: string | null | undefined
120
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
121
- ): Promise<BitObject> {
112
+ static async fromDeflatedBuffer(fileContents: Buffer, ref: string | null | undefined): Promise<BitObject> {
122
113
  // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
123
114
  return inflate(fileContents).then((buffer) => new BitRawObject(buffer, ref));
124
115
  }
@@ -129,7 +120,6 @@ export default class BitRawObject {
129
120
  * @param {Any} parsedContent
130
121
  */
131
122
  toRealObject() {
132
- // @ts-ignore
133
123
  return types[this.type].from(this.parsedContent || this.getParsedContent(), this.headers[1]);
134
124
  }
135
125
 
package/objects/ref.ts CHANGED
@@ -1,5 +1,5 @@
1
- import BitObject from './object';
2
- import Repository from './repository';
1
+ import type BitObject from './object';
2
+ import type Repository from './repository';
3
3
 
4
4
  export default class Ref {
5
5
  hash: string;
@@ -1,7 +1,7 @@
1
1
  import isRelative from 'is-relative-path';
2
2
  import path from 'path';
3
3
 
4
- import { ScopeJson } from '@teambit/legacy.scope';
4
+ import type { ScopeJson } from '@teambit/legacy.scope';
5
5
 
6
6
  export type ContentTransformer = (content: Buffer) => Buffer;
7
7
 
@@ -3,37 +3,35 @@ import uidNumber from 'uid-number';
3
3
  import { Mutex } from 'async-mutex';
4
4
  import { compact, uniqBy, differenceWith, isEqual } from 'lodash';
5
5
  import { BitError } from '@teambit/bit-error';
6
- import { ComponentID } from '@teambit/component-id';
6
+ import type { ComponentID } from '@teambit/component-id';
7
7
  import { HASH_SIZE, isSnap } from '@teambit/component-version';
8
8
  import * as path from 'path';
9
9
  import { pMapPool } from '@teambit/toolbox.promise.map-pool';
10
10
  import { OBJECTS_DIR } from '@teambit/legacy.constants';
11
11
  import { logger } from '@teambit/legacy.logger';
12
- import { glob, writeFile, ChownOptions, PathOsBasedAbsolute } from '@teambit/legacy.utils';
12
+ import type { ChownOptions, PathOsBasedAbsolute } from '@teambit/legacy.utils';
13
+ import { glob, writeFile } from '@teambit/legacy.utils';
13
14
  import { removeEmptyDir } from '@teambit/toolbox.fs.remove-empty-dir';
14
15
  import { concurrentIOLimit } from '@teambit/harmony.modules.concurrency';
15
- import {
16
- Types,
17
- HashNotFound,
18
- OutdatedIndexJson,
19
- ScopeJson,
20
- UnmergedComponents,
21
- RemoteLanes,
22
- } from '@teambit/legacy.scope';
23
- import { ScopeIndex, IndexType, IndexItem } from './scope-index';
16
+ import type { Types, ScopeJson } from '@teambit/legacy.scope';
17
+ import { HashNotFound, OutdatedIndexJson, UnmergedComponents, RemoteLanes } from '@teambit/legacy.scope';
18
+ import type { IndexType, IndexItem } from './scope-index';
19
+ import { ScopeIndex } from './scope-index';
24
20
  import BitObject from './object';
25
- import { ObjectItem, ObjectList } from './object-list';
21
+ import type { ObjectItem } from './object-list';
22
+ import { ObjectList } from './object-list';
26
23
  import BitRawObject from './raw-object';
27
24
  import Ref from './ref';
28
- import { ContentTransformer, onPersist, onRead } from './repository-hooks';
29
- import { getMaxSizeForObjects, InMemoryCache, createInMemoryCache } from '@teambit/harmony.modules.in-memory-cache';
25
+ import type { ContentTransformer } from './repository-hooks';
26
+ import { onPersist, onRead } from './repository-hooks';
27
+ import type { InMemoryCache } from '@teambit/harmony.modules.in-memory-cache';
28
+ import { getMaxSizeForObjects, createInMemoryCache } from '@teambit/harmony.modules.in-memory-cache';
30
29
  import { ScopeMeta, Lane, ModelComponent } from '../models';
31
30
 
32
31
  const OBJECTS_BACKUP_DIR = `${OBJECTS_DIR}.bak`;
33
32
  const TRASH_DIR = 'trash';
34
33
 
35
34
  export default class Repository {
36
- // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!
37
35
  objects: { [key: string]: BitObject } = {};
38
36
  objectsToRemove: Ref[] = [];
39
37
  scopeJson: ScopeJson;
@@ -7,8 +7,8 @@ import { logger } from '@teambit/legacy.logger';
7
7
  import { InvalidIndexJson } from '@teambit/legacy.scope';
8
8
  import { ModelComponent, Symlink } from '../models';
9
9
  import Lane from '../models/lane';
10
- import BitObject from './object';
11
- import Ref from './ref';
10
+ import type BitObject from './object';
11
+ import type Ref from './ref';
12
12
  import { difference } from 'lodash';
13
13
 
14
14
  const COMPONENTS_INDEX_FILENAME = 'index.json';
@@ -111,7 +111,6 @@ export class ScopeIndex {
111
111
  }
112
112
 
113
113
  getHashes(indexType: IndexType): string[] {
114
- // @ts-ignore how to tell TS that all this.index.prop are array?
115
114
  return this.index[indexType].map((indexItem: IndexItem) => indexItem.hash);
116
115
  }
117
116
  getHashesByQuery(indexType: IndexType, filter: Function): string[] {
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@teambit/objects",
3
- "version": "0.0.0-c65281df432da06d33a8e9ea933aefa7f48134e9",
3
+ "version": "0.0.0-ca9da0f59285afdecdf6fe467472a195bd2695d9",
4
4
  "homepage": "https://bit.cloud/teambit/scope/objects",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.scope",
8
8
  "name": "objects",
9
- "version": "c65281df432da06d33a8e9ea933aefa7f48134e9"
9
+ "version": "ca9da0f59285afdecdf6fe467472a195bd2695d9"
10
10
  },
11
11
  "dependencies": {
12
- "@pnpm/dependency-path": "1001.0.2",
13
- "@pnpm/lockfile.types": "^1001.1.0",
12
+ "@pnpm/dependency-path": "1001.1.0",
13
+ "@pnpm/lockfile.types": "^1002.0.0",
14
14
  "semver": "7.7.1",
15
15
  "lodash": "4.17.21",
16
16
  "uuid": "8.3.2",
@@ -22,42 +22,42 @@
22
22
  "uid-number": "0.0.6",
23
23
  "@teambit/harmony": "0.4.7",
24
24
  "@teambit/component-id": "1.2.4",
25
- "@teambit/legacy.utils": "0.0.22",
26
- "@teambit/harmony.modules.get-basic-log": "0.0.58",
25
+ "@teambit/legacy.utils": "0.0.23",
27
26
  "@teambit/bit-error": "0.0.404",
28
27
  "@teambit/component-version": "1.0.4",
29
- "@teambit/component.snap-distance": "0.0.58",
30
28
  "@teambit/lane-id": "0.0.312",
31
- "@teambit/legacy.cli.error": "0.0.22",
32
- "@teambit/legacy.constants": "0.0.13",
33
- "@teambit/legacy.logger": "0.0.22",
34
- "@teambit/legacy.scope": "0.0.57",
29
+ "@teambit/legacy.cli.error": "0.0.24",
30
+ "@teambit/legacy.constants": "0.0.14",
31
+ "@teambit/legacy.logger": "0.0.24",
35
32
  "@teambit/toolbox.crypto.sha1": "0.0.7",
36
- "@teambit/component.sources": "0.0.109",
37
33
  "@teambit/legacy-bit-id": "1.1.3",
38
34
  "@teambit/legacy-component-log": "0.0.408",
39
- "@teambit/legacy.consumer-component": "0.0.58",
40
- "@teambit/legacy.consumer-config": "0.0.57",
41
- "@teambit/legacy.extension-data": "0.0.59",
42
- "@teambit/pkg.modules.semver-helper": "0.0.12",
35
+ "@teambit/pkg.modules.semver-helper": "0.0.13",
43
36
  "@teambit/toolbox.array.duplications-finder": "0.0.3",
44
37
  "@teambit/graph.cleargraph": "0.0.11",
45
38
  "@teambit/bit.get-bit-version": "0.0.6",
46
- "@teambit/semantics.doc-parser": "0.0.65",
47
- "@teambit/harmony.modules.concurrency": "0.0.14",
39
+ "@teambit/harmony.modules.concurrency": "0.0.15",
48
40
  "@teambit/toolbox.promise.map-pool": "0.0.6",
49
- "@teambit/harmony.modules.in-memory-cache": "0.0.15",
41
+ "@teambit/harmony.modules.in-memory-cache": "0.0.17",
50
42
  "@teambit/toolbox.fs.remove-empty-dir": "0.0.5",
51
- "@teambit/cli": "0.0.0-25977f5e4d6ee22ae5d25a22f3f67f793533eb60",
52
- "@teambit/config-store": "0.0.0-323186f637985d8ef222ba4b80eca3316cd208c8",
53
- "@teambit/graph": "0.0.0-de201fb71dd33bb7d70710dbeb2adef5d362a1ea"
43
+ "@teambit/cli": "0.0.0-db56479e59017a6bfec5bef7047caf6c34e5c5b0",
44
+ "@teambit/harmony.modules.get-basic-log": "0.0.0-0a3a9c2cdf5e4bce1bdf70e46866d57497fe3f35",
45
+ "@teambit/component.snap-distance": "0.0.0-a356afe5dfe7f3c9d5d2256a59de3bb03b737bee",
46
+ "@teambit/config-store": "0.0.0-4ae5a69a7e726f055555fecba359183563ab9fd4",
47
+ "@teambit/legacy.scope": "0.0.0-0d3302f45fb21f8ffe0bc161c47f2a10c66716cb",
48
+ "@teambit/component.sources": "0.0.0-efa014456ccb1731af8e3235405e0163f6ace58e",
49
+ "@teambit/legacy.consumer-component": "0.0.0-331c006738a542865edcf7b7f7c22fce304bb990",
50
+ "@teambit/legacy.consumer-config": "0.0.0-55f2dd578a1e7f7b632a34e9ebc58b081f7e8764",
51
+ "@teambit/legacy.extension-data": "0.0.0-a44b7009e769af3fe24e5a49b360b1d98c9750e3",
52
+ "@teambit/semantics.doc-parser": "0.0.0-55cff53246e9b9da41826ccf8eff1324f63f57b5",
53
+ "@teambit/graph": "0.0.0-04dbe0a76a4d74ae278a3ecdde3bc97c9c9fd63f"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/semver": "7.5.8",
57
57
  "@types/lodash": "4.14.165",
58
58
  "@types/uuid": "8.3.4",
59
59
  "@types/fs-extra": "9.0.7",
60
- "@teambit/harmony.envs.core-aspect-env": "0.0.72"
60
+ "@teambit/harmony.envs.core-aspect-env": "0.0.75"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "chai": "5.2.1",