@teambit/workspace 1.0.321 → 1.0.322

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.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/workspace",
3
- "version": "1.0.321",
3
+ "version": "1.0.322",
4
4
  "homepage": "https://bit.cloud/teambit/workspace/workspace",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.workspace",
8
8
  "name": "workspace",
9
- "version": "1.0.321"
9
+ "version": "1.0.322"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -51,43 +51,45 @@
51
51
  "@teambit/scopes.scope-id": "0.0.7",
52
52
  "@teambit/workspace.ui.empty-workspace": "0.0.508",
53
53
  "@teambit/explorer.ui.component-card": "0.0.30",
54
- "@teambit/component": "1.0.321",
55
- "@teambit/dependency-resolver": "1.0.321",
56
- "@teambit/envs": "1.0.321",
57
- "@teambit/logger": "0.0.991",
58
- "@teambit/scope": "1.0.321",
59
- "@teambit/graph": "1.0.321",
60
- "@teambit/cli": "0.0.898",
61
- "@teambit/isolator": "1.0.321",
62
- "@teambit/component-tree": "1.0.321",
54
+ "@teambit/component": "1.0.322",
55
+ "@teambit/dependency-resolver": "1.0.322",
56
+ "@teambit/envs": "1.0.322",
57
+ "@teambit/logger": "0.0.992",
58
+ "@teambit/scope": "1.0.322",
59
+ "@teambit/graph": "1.0.322",
60
+ "@teambit/cli": "0.0.899",
61
+ "@teambit/isolator": "1.0.322",
62
+ "@teambit/component-tree": "1.0.322",
63
63
  "@teambit/harmony.modules.resolved-component": "0.0.497",
64
- "@teambit/watcher": "1.0.321",
65
- "@teambit/aspect-loader": "1.0.321",
66
- "@teambit/config": "0.0.1072",
67
- "@teambit/global-config": "0.0.901",
64
+ "@teambit/watcher": "1.0.322",
65
+ "@teambit/aspect-loader": "1.0.322",
66
+ "@teambit/config": "0.0.1073",
67
+ "@teambit/global-config": "0.0.902",
68
68
  "@teambit/harmony.modules.requireable-component": "0.0.497",
69
69
  "@teambit/toolbox.modules.module-resolver": "0.0.7",
70
70
  "@teambit/workspace.modules.node-modules-linker": "0.0.174",
71
- "@teambit/graphql": "1.0.321",
72
- "@teambit/bundler": "1.0.321",
73
- "@teambit/pubsub": "1.0.321",
74
- "@teambit/ui": "1.0.321",
75
- "@teambit/variants": "0.0.1165",
71
+ "@teambit/graphql": "1.0.322",
72
+ "@teambit/bundler": "1.0.322",
73
+ "@teambit/pubsub": "1.0.322",
74
+ "@teambit/ui": "1.0.322",
75
+ "@teambit/variants": "0.0.1166",
76
76
  "@teambit/component-issues": "0.0.149",
77
+ "@teambit/harmony.modules.in-memory-cache": "0.0.1",
78
+ "@teambit/legacy.scope-api": "0.0.2",
77
79
  "@teambit/workspace.modules.match-pattern": "0.0.505",
78
80
  "@teambit/component.ui.component-drawer": "0.0.401",
79
81
  "@teambit/lanes.hooks.use-lane-components": "0.0.264",
80
82
  "@teambit/lanes.hooks.use-lanes": "0.0.264",
81
83
  "@teambit/lanes.ui.models.lanes-model": "0.0.216",
82
- "@teambit/command-bar": "1.0.321",
84
+ "@teambit/command-bar": "1.0.322",
83
85
  "@teambit/component.ui.component-filters.component-filter-context": "0.0.222",
84
86
  "@teambit/component.ui.component-filters.deprecate-filter": "0.0.220",
85
87
  "@teambit/component.ui.component-filters.env-filter": "0.0.230",
86
88
  "@teambit/component.ui.component-filters.show-main-filter": "0.0.213",
87
- "@teambit/sidebar": "1.0.321",
89
+ "@teambit/sidebar": "1.0.322",
88
90
  "@teambit/ui-foundation.ui.react-router.slot-router": "0.0.509",
89
91
  "@teambit/component-descriptor": "0.0.421",
90
- "@teambit/deprecation": "1.0.321",
92
+ "@teambit/deprecation": "1.0.322",
91
93
  "@teambit/ui-foundation.ui.buttons.collapser": "0.0.222",
92
94
  "@teambit/cloud.hooks.use-cloud-scopes": "0.0.3",
93
95
  "@teambit/design.ui.tooltip": "0.0.369",
@@ -13,9 +13,8 @@ import { DependencyResolverAspect, DependencyResolverMain } from '@teambit/depen
13
13
  import { Logger } from '@teambit/logger';
14
14
  import { EnvsAspect, EnvsMain } from '@teambit/envs';
15
15
  import { ExtensionDataEntry, ExtensionDataList } from '@teambit/legacy/dist/consumer/config';
16
- import { getMaxSizeForComponents, InMemoryCache } from '@teambit/legacy/dist/cache/in-memory-cache';
16
+ import { getMaxSizeForComponents, InMemoryCache, createInMemoryCache } from '@teambit/harmony.modules.in-memory-cache';
17
17
  import { AspectLoaderMain } from '@teambit/aspect-loader';
18
- import { createInMemoryCache } from '@teambit/legacy/dist/cache/cache-factory';
19
18
  import ComponentNotFoundInPath from '@teambit/legacy/dist/consumer/component/exceptions/component-not-found-in-path';
20
19
  import { ComponentLoadOptions as LegacyComponentLoadOptions } from '@teambit/legacy/dist/consumer/component/component-loader';
21
20
  import { pMapPool } from '@teambit/legacy/dist/utils/promise-with-concurrent';