@teambit/workspace 1.0.1022 → 1.0.1023

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.
@@ -1,7 +1,7 @@
1
1
  # Component Loading Redesign
2
2
 
3
- **Status:** Proposal under review
4
- **Last updated:** 2026-06-10 (code references are against `master` @ `59855b104`; line numbers will drift)
3
+ **Status:** Phase 1 shipped; Phase 2 in progress
4
+ **Last updated:** 2026-06-15 (code references are against `master` @ `59855b104`; line numbers will drift)
5
5
 
6
6
  This document is the source of truth for a multi-phase effort to simplify Bit's component-loading
7
7
  mechanism: fewer caches, a staged (lazy) loading pipeline, a single env/aspect load planner, and a
@@ -203,7 +203,7 @@ earlier ones teach us).
203
203
 
204
204
  ### Phase 2 — Quick perf wins on existing seams
205
205
 
206
- - [ ] Benchmark harness committed + baseline recorded (see §4) — **gate for the rest of the phase**
206
+ - [x] Benchmark harness committed + baseline recorded (see §4) — **gate for the rest of the phase**
207
207
  - [ ] Lazy file contents in `ModelComponent.toConsumerComponent`
208
208
  - [ ] `bit deps usage`: ids + stored deps instead of full load
209
209
  - [ ] IDE metadata endpoint (`api-for-ide.ts`): S0-S2-level data only
@@ -239,17 +239,69 @@ earlier ones teach us).
239
239
 
240
240
  ## 4. Benchmarks
241
241
 
242
- Method: run on this repository's own workspace (large, real). Record wall-time (median of 3 warm
243
- runs) and peak RSS. Update this table at every phase boundary; any phase that regresses a number
244
- must explain why before merging.
245
-
246
- | Milestone | `bit status` | `bit list` | `bit show <comp>` | `bit graph` | Peak RSS |
247
- | ---------------------- | ------------ | ---------- | ----------------- | ----------- | -------- |
248
- | Baseline (pre-Phase 2) | — | — | — | — | — |
249
- | After Phase 2 | — | — | — | — | — |
250
- | After Phase 3 | — | — | — | — | — |
251
- | After Phase 4 | — | — | — | — | — |
252
- | After Phase 5 | — | — | — | — | — |
242
+ Method: `node scripts/bench-component-loading.js --bin=<bit>` runs the four commands below on this
243
+ repository's own workspace (large, real ~313 components), reporting wall-time (median of 3 warm
244
+ runs, after a discarded warmup) and peak RSS (via `/usr/bin/time`). Run `bit import` first so the
245
+ workspace isn't in a degraded "outdated objects" state. Absolute numbers are **machine-specific** —
246
+ compare deltas on the same machine. Update this table at every phase boundary; any phase that
247
+ regresses a number must explain why before merging.
248
+
249
+ The `Peak RSS` column is the worst case across the four commands (`bit graph`). Wall-times are
250
+ median seconds. Per-command peak RSS for the baseline: status 1237MB, list 425MB, show 253MB,
251
+ graph 2013MB.
252
+
253
+ | Milestone | `bit status` | `bit list` | `bit show <comp>` | `bit graph --json` | Peak RSS |
254
+ | ---------------------- | ------------ | ---------- | ----------------- | ------------------ | -------- |
255
+ | Baseline (pre-Phase 2) | 11.24s | 1.59s | 1.73s | 20.49s | 2013MB |
256
+ | After Phase 2 | — | — | — | — | — |
257
+ | After Phase 3 | — | — | — | — | — |
258
+ | After Phase 4 | — | — | — | — | — |
259
+ | After Phase 5 | — | — | — | — | — |
260
+
261
+ Baseline measured 2026-06-15 on darwin (Apple silicon), `bit` @ 1.13.222, node v22.20.0,
262
+ `bit show teambit.workspace/workspace`. The two clear hotspots are `bit status` (11s) and
263
+ `bit graph` (20s, 2GB).
264
+
265
+ ### 4.1 Profiling findings (where the warm load time actually goes)
266
+
267
+ Beyond wall-time, an opt-in aggregate profiler (`BIT_LOAD_PROFILE=1 bit <cmd>`, in
268
+ `@teambit/harmony.modules.load-trace`) sums each load stage's self-time across the whole command.
269
+ Numbers below are aggregate self-time across ~313 components at ~6× concurrency (so wall ≈ total/6).
270
+
271
+ **`bit status` (warm, ~13s wall):**
272
+
273
+ | stage | aggregate self-time | ~wall | note |
274
+ | ----------------------------------------------------------- | ------------------- | ----- | --------------------------------------------- |
275
+ | `legacy-load-deps` | 43s | ~7s | dependency-object materialization (see below) |
276
+ | `on-load` (slot handlers: docs, compositions, schema, pkg…) | 10s | ~1.7s | trimmable for non-UI flows |
277
+ | `dependency-resolution` (Harmony resolver) | 7.7s | ~1.3s | |
278
+ | `execute-load-slot` (own) | 5.8s | ~1s | |
279
+ | `consumer-fs-load` (file content reads) | negligible | — | not a `status` cost |
280
+
281
+ **`bit graph --json` (warm, ~20s wall; ~7.5s of it is loading):**
282
+
283
+ | stage | aggregate self-time | note |
284
+ | --------------------------------------- | ------------------- | ------------------------------ |
285
+ | `consumer-fs-load` (file content reads) | 5.8s | dominant load cost for graph |
286
+ | `legacy-load-deps` | 1.2s | graph uses a lighter load path |
287
+
288
+ **Key conclusions (validated, not hypothesized):**
289
+
290
+ - **The dependency FS cache works.** On a warm `bit status`, dep loading is **635 cache hits, 0
291
+ misses/recomputes**. `legacy-load-deps` is _not_ re-resolving dependencies.
292
+ - **`status`'s dominant cost (~7s wall) is dependency-object _materialization on cache hit_** —
293
+ `DependenciesData.deserialize` + reconstructing full `Dependency`/`DependencyList` objects +
294
+ `applyOverrides`, for every component, even though `status` reads little of it. This is the
295
+ "all-or-nothing, always fully materialize" problem of §1.1 — **structural, not a cache bug.**
296
+ Reducing it needs the staged/lazy-loading work (defer dependency-object construction), **not a
297
+ Phase-2 quick fix.** Earlier framing of this as "39s" was aggregate-concurrent self-time, not
298
+ wall; wall is ~13s.
299
+ - **`graph`'s dominant load cost is file-content reads (`consumer-fs-load`, 5.8s)** → this is what
300
+ **lazy file contents** (§2.1) targets; validated as a real win for `graph`/scope-side loads, but
301
+ it does **not** help `status` (whose file reads are negligible).
302
+ - Implication for Phase-2 ordering: lazy file contents helps `graph`; per-command partial loads help
303
+ `deps usage`/IDE/`remove`/forking; `loadDocs/loadCompositions: false` trims `status`'s slot work
304
+ (~1.7s). The big `status` number is deferred to the staged-loading phase.
253
305
 
254
306
  ---
255
307
 
@@ -258,7 +310,7 @@ must explain why before merging.
258
310
  | Phase | State | OpenSpec change | PRs |
259
311
  | ----------------------- | ----------- | ------------------------------ | --------------------------------------------------- |
260
312
  | 1 — Observability | done | `component-load-observability` | [#10418](https://github.com/teambit/bit/pull/10418) |
261
- | 2 — Quick perf wins | not started | — | — |
313
+ | 2 — Quick perf wins | in progress | — | — |
262
314
  | 3 — Cache consolidation | not started | — | — |
263
315
  | 4 — Staged pipeline | not started | — | — |
264
316
  | 5 — Env planner | not started | — | — |
@@ -277,3 +329,14 @@ must explain why before merging.
277
329
  Span-to-stage mapping for Phase 2 benchmarks: S0=`id-resolution`, S1=`scope-load`/
278
330
  `state-from-version`, S2=`extension-merge`+`env-calc`, S3=`consumer-fs-load`,
279
331
  S4=`dependency-resolution`+`execute-load-slot`/`on-load:*`.
332
+ - 2026-06-15 — Phase 2 started. Benchmark harness committed (`scripts/bench-component-loading.js`)
333
+ and baseline recorded in §4 (after `bit import`): `bit status` 11.24s, `bit list` 1.59s,
334
+ `bit show` 1.73s, `bit graph --json` 20.49s; peak RSS 2.0GB on graph.
335
+ - 2026-06-16 — Profiling done (see §4.1). Added an opt-in aggregate per-stage profiler
336
+ (`BIT_LOAD_PROFILE=1`) to `@teambit/harmony.modules.load-trace`. Findings: the dependency FS cache
337
+ works (warm `bit status` = 635 dep-cache hits, 0 misses). `status`'s dominant warm cost (~7s wall)
338
+ is dependency-_object materialization_ on cache hit (deserialize + reconstruct), not resolution —
339
+ structural, deferred to staged loading, not a Phase-2 quick win. `graph`'s dominant load cost is
340
+ file-content reads (`consumer-fs-load`, 5.8s) → the target for lazy file contents. (Correction: an
341
+ earlier "39s" figure was aggregate-concurrent self-time, not wall; warm wall is ~13s.) Direction
342
+ for the next Phase-2 PR intentionally left open.
@@ -1,7 +1,7 @@
1
1
  # Component Loading Redesign
2
2
 
3
- **Status:** Proposal under review
4
- **Last updated:** 2026-06-10 (code references are against `master` @ `59855b104`; line numbers will drift)
3
+ **Status:** Phase 1 shipped; Phase 2 in progress
4
+ **Last updated:** 2026-06-15 (code references are against `master` @ `59855b104`; line numbers will drift)
5
5
 
6
6
  This document is the source of truth for a multi-phase effort to simplify Bit's component-loading
7
7
  mechanism: fewer caches, a staged (lazy) loading pipeline, a single env/aspect load planner, and a
@@ -203,7 +203,7 @@ earlier ones teach us).
203
203
 
204
204
  ### Phase 2 — Quick perf wins on existing seams
205
205
 
206
- - [ ] Benchmark harness committed + baseline recorded (see §4) — **gate for the rest of the phase**
206
+ - [x] Benchmark harness committed + baseline recorded (see §4) — **gate for the rest of the phase**
207
207
  - [ ] Lazy file contents in `ModelComponent.toConsumerComponent`
208
208
  - [ ] `bit deps usage`: ids + stored deps instead of full load
209
209
  - [ ] IDE metadata endpoint (`api-for-ide.ts`): S0-S2-level data only
@@ -239,17 +239,69 @@ earlier ones teach us).
239
239
 
240
240
  ## 4. Benchmarks
241
241
 
242
- Method: run on this repository's own workspace (large, real). Record wall-time (median of 3 warm
243
- runs) and peak RSS. Update this table at every phase boundary; any phase that regresses a number
244
- must explain why before merging.
245
-
246
- | Milestone | `bit status` | `bit list` | `bit show <comp>` | `bit graph` | Peak RSS |
247
- | ---------------------- | ------------ | ---------- | ----------------- | ----------- | -------- |
248
- | Baseline (pre-Phase 2) | — | — | — | — | — |
249
- | After Phase 2 | — | — | — | — | — |
250
- | After Phase 3 | — | — | — | — | — |
251
- | After Phase 4 | — | — | — | — | — |
252
- | After Phase 5 | — | — | — | — | — |
242
+ Method: `node scripts/bench-component-loading.js --bin=<bit>` runs the four commands below on this
243
+ repository's own workspace (large, real ~313 components), reporting wall-time (median of 3 warm
244
+ runs, after a discarded warmup) and peak RSS (via `/usr/bin/time`). Run `bit import` first so the
245
+ workspace isn't in a degraded "outdated objects" state. Absolute numbers are **machine-specific** —
246
+ compare deltas on the same machine. Update this table at every phase boundary; any phase that
247
+ regresses a number must explain why before merging.
248
+
249
+ The `Peak RSS` column is the worst case across the four commands (`bit graph`). Wall-times are
250
+ median seconds. Per-command peak RSS for the baseline: status 1237MB, list 425MB, show 253MB,
251
+ graph 2013MB.
252
+
253
+ | Milestone | `bit status` | `bit list` | `bit show <comp>` | `bit graph --json` | Peak RSS |
254
+ | ---------------------- | ------------ | ---------- | ----------------- | ------------------ | -------- |
255
+ | Baseline (pre-Phase 2) | 11.24s | 1.59s | 1.73s | 20.49s | 2013MB |
256
+ | After Phase 2 | — | — | — | — | — |
257
+ | After Phase 3 | — | — | — | — | — |
258
+ | After Phase 4 | — | — | — | — | — |
259
+ | After Phase 5 | — | — | — | — | — |
260
+
261
+ Baseline measured 2026-06-15 on darwin (Apple silicon), `bit` @ 1.13.222, node v22.20.0,
262
+ `bit show teambit.workspace/workspace`. The two clear hotspots are `bit status` (11s) and
263
+ `bit graph` (20s, 2GB).
264
+
265
+ ### 4.1 Profiling findings (where the warm load time actually goes)
266
+
267
+ Beyond wall-time, an opt-in aggregate profiler (`BIT_LOAD_PROFILE=1 bit <cmd>`, in
268
+ `@teambit/harmony.modules.load-trace`) sums each load stage's self-time across the whole command.
269
+ Numbers below are aggregate self-time across ~313 components at ~6× concurrency (so wall ≈ total/6).
270
+
271
+ **`bit status` (warm, ~13s wall):**
272
+
273
+ | stage | aggregate self-time | ~wall | note |
274
+ | ----------------------------------------------------------- | ------------------- | ----- | --------------------------------------------- |
275
+ | `legacy-load-deps` | 43s | ~7s | dependency-object materialization (see below) |
276
+ | `on-load` (slot handlers: docs, compositions, schema, pkg…) | 10s | ~1.7s | trimmable for non-UI flows |
277
+ | `dependency-resolution` (Harmony resolver) | 7.7s | ~1.3s | |
278
+ | `execute-load-slot` (own) | 5.8s | ~1s | |
279
+ | `consumer-fs-load` (file content reads) | negligible | — | not a `status` cost |
280
+
281
+ **`bit graph --json` (warm, ~20s wall; ~7.5s of it is loading):**
282
+
283
+ | stage | aggregate self-time | note |
284
+ | --------------------------------------- | ------------------- | ------------------------------ |
285
+ | `consumer-fs-load` (file content reads) | 5.8s | dominant load cost for graph |
286
+ | `legacy-load-deps` | 1.2s | graph uses a lighter load path |
287
+
288
+ **Key conclusions (validated, not hypothesized):**
289
+
290
+ - **The dependency FS cache works.** On a warm `bit status`, dep loading is **635 cache hits, 0
291
+ misses/recomputes**. `legacy-load-deps` is _not_ re-resolving dependencies.
292
+ - **`status`'s dominant cost (~7s wall) is dependency-object _materialization on cache hit_** —
293
+ `DependenciesData.deserialize` + reconstructing full `Dependency`/`DependencyList` objects +
294
+ `applyOverrides`, for every component, even though `status` reads little of it. This is the
295
+ "all-or-nothing, always fully materialize" problem of §1.1 — **structural, not a cache bug.**
296
+ Reducing it needs the staged/lazy-loading work (defer dependency-object construction), **not a
297
+ Phase-2 quick fix.** Earlier framing of this as "39s" was aggregate-concurrent self-time, not
298
+ wall; wall is ~13s.
299
+ - **`graph`'s dominant load cost is file-content reads (`consumer-fs-load`, 5.8s)** → this is what
300
+ **lazy file contents** (§2.1) targets; validated as a real win for `graph`/scope-side loads, but
301
+ it does **not** help `status` (whose file reads are negligible).
302
+ - Implication for Phase-2 ordering: lazy file contents helps `graph`; per-command partial loads help
303
+ `deps usage`/IDE/`remove`/forking; `loadDocs/loadCompositions: false` trims `status`'s slot work
304
+ (~1.7s). The big `status` number is deferred to the staged-loading phase.
253
305
 
254
306
  ---
255
307
 
@@ -258,7 +310,7 @@ must explain why before merging.
258
310
  | Phase | State | OpenSpec change | PRs |
259
311
  | ----------------------- | ----------- | ------------------------------ | --------------------------------------------------- |
260
312
  | 1 — Observability | done | `component-load-observability` | [#10418](https://github.com/teambit/bit/pull/10418) |
261
- | 2 — Quick perf wins | not started | — | — |
313
+ | 2 — Quick perf wins | in progress | — | — |
262
314
  | 3 — Cache consolidation | not started | — | — |
263
315
  | 4 — Staged pipeline | not started | — | — |
264
316
  | 5 — Env planner | not started | — | — |
@@ -277,3 +329,14 @@ must explain why before merging.
277
329
  Span-to-stage mapping for Phase 2 benchmarks: S0=`id-resolution`, S1=`scope-load`/
278
330
  `state-from-version`, S2=`extension-merge`+`env-calc`, S3=`consumer-fs-load`,
279
331
  S4=`dependency-resolution`+`execute-load-slot`/`on-load:*`.
332
+ - 2026-06-15 — Phase 2 started. Benchmark harness committed (`scripts/bench-component-loading.js`)
333
+ and baseline recorded in §4 (after `bit import`): `bit status` 11.24s, `bit list` 1.59s,
334
+ `bit show` 1.73s, `bit graph --json` 20.49s; peak RSS 2.0GB on graph.
335
+ - 2026-06-16 — Profiling done (see §4.1). Added an opt-in aggregate per-stage profiler
336
+ (`BIT_LOAD_PROFILE=1`) to `@teambit/harmony.modules.load-trace`. Findings: the dependency FS cache
337
+ works (warm `bit status` = 635 dep-cache hits, 0 misses). `status`'s dominant warm cost (~7s wall)
338
+ is dependency-_object materialization_ on cache hit (deserialize + reconstruct), not resolution —
339
+ structural, deferred to staged loading, not a Phase-2 quick win. `graph`'s dominant load cost is
340
+ file-content reads (`consumer-fs-load`, 5.8s) → the target for lazy file contents. (Correction: an
341
+ earlier "39s" figure was aggregate-concurrent self-time, not wall; warm wall is ~13s.) Direction
342
+ for the next Phase-2 PR intentionally left open.
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.1022/dist/workspace.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.1022/dist/workspace.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.1023/dist/workspace.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.1023/dist/workspace.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -11,6 +11,7 @@ export declare function useWorkspace(options?: UseWorkspaceOptions): {
11
11
  errors?: ReadonlyArray<import("graphql").GraphQLFormattedError> | undefined;
12
12
  client: import("@apollo/client").ApolloClient<any>;
13
13
  loading: boolean;
14
+ variables: import("@apollo/client").OperationVariables | undefined;
14
15
  observable: import("@apollo/client").ObservableQuery<any, import("@apollo/client").OperationVariables>;
15
16
  networkStatus: import("@apollo/client").NetworkStatus;
16
17
  called: boolean;
@@ -18,7 +19,6 @@ export declare function useWorkspace(options?: UseWorkspaceOptions): {
18
19
  stopPolling: () => void;
19
20
  updateQuery: (mapFn: import("@apollo/client").UpdateQueryMapFn<any, import("@apollo/client").OperationVariables>) => void;
20
21
  reobserve: (newOptions?: Partial<import("@apollo/client").WatchQueryOptions<import("@apollo/client").OperationVariables, any>> | undefined, newNetworkStatus?: import("@apollo/client").NetworkStatus) => Promise<import("@apollo/client").ApolloQueryResult<any>>;
21
- variables: import("@apollo/client").OperationVariables | undefined;
22
22
  previousData?: any;
23
23
  fetchMore: (options: import("@apollo/client").FetchMoreQueryOptions<import("@apollo/client").OperationVariables, any>) => Promise<import("@apollo/client").ApolloQueryResult<any>>;
24
24
  refetch: (variables?: Partial<import("@apollo/client").OperationVariables> | undefined) => Promise<import("@apollo/client").ApolloQueryResult<any>>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/workspace",
3
- "version": "1.0.1022",
3
+ "version": "1.0.1023",
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.1022"
9
+ "version": "1.0.1023"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -36,27 +36,40 @@
36
36
  "@teambit/toolbox.fs.last-modified": "0.0.15",
37
37
  "@teambit/toolbox.path.path": "0.0.17",
38
38
  "@teambit/graph.cleargraph": "0.0.11",
39
+ "@teambit/legacy.constants": "0.0.31",
39
40
  "@teambit/component.ui.component-status-resolver": "0.0.510",
40
- "@teambit/harmony.modules.load-trace": "0.0.1",
41
+ "@teambit/harmony.modules.resolved-component": "0.0.515",
42
+ "@teambit/legacy.utils": "0.0.39",
43
+ "@teambit/harmony.modules.requireable-component": "0.0.515",
41
44
  "@teambit/toolbox.modules.module-resolver": "0.0.20",
45
+ "@teambit/component-issues": "0.0.174",
42
46
  "@teambit/dependencies.modules.packages-excluder": "1.0.8",
47
+ "@teambit/git.modules.git-executable": "0.0.32",
48
+ "@teambit/harmony.modules.in-memory-cache": "0.0.35",
43
49
  "@teambit/legacy-bit-id": "1.1.3",
44
50
  "@teambit/toolbox.path.is-path-inside": "0.0.509",
51
+ "@teambit/workspace.modules.match-pattern": "0.0.522",
52
+ "@teambit/component.ui.component-drawer": "0.0.484",
45
53
  "@teambit/design.ui.tree": "0.0.16",
54
+ "@teambit/lanes.hooks.use-lane-components": "0.0.304",
46
55
  "@teambit/lanes.hooks.use-lanes": "0.0.293",
47
56
  "@teambit/lanes.ui.models.lanes-model": "0.0.233",
57
+ "@teambit/ui-foundation.ui.side-bar": "0.0.935",
48
58
  "@teambit/component.ui.component-filters.component-filter-context": "0.0.242",
49
59
  "@teambit/component.ui.component-filters.deprecate-filter": "0.0.244",
60
+ "@teambit/component.ui.component-filters.env-filter": "0.0.276",
50
61
  "@teambit/component.ui.component-filters.show-main-filter": "0.0.237",
51
62
  "@teambit/design.ui.surfaces.menu.link-item": "1.0.13",
52
63
  "@teambit/ui-foundation.ui.main-dropdown": "0.0.505",
53
64
  "@teambit/ui-foundation.ui.menu": "0.0.503",
54
65
  "@teambit/ui-foundation.ui.react-router.slot-router": "0.0.523",
55
66
  "@teambit/ui-foundation.ui.tree.drawer": "1.0.0",
67
+ "@teambit/harmony.modules.concurrency": "0.0.32",
56
68
  "@teambit/toolbox.promise.map-pool": "0.0.15",
57
69
  "@teambit/base-react.themes.theme-switcher": "1.1.2",
58
70
  "@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.506",
59
71
  "@teambit/workspace.ui.use-workspace-mode": "0.0.3",
72
+ "@teambit/component-descriptor": "0.0.453",
60
73
  "@teambit/ui-foundation.ui.constants.z-indexes": "0.0.504",
61
74
  "@teambit/base-ui.surfaces.split-pane.hover-splitter": "1.0.1",
62
75
  "@teambit/base-ui.surfaces.split-pane.split-pane": "1.0.0",
@@ -68,63 +81,50 @@
68
81
  "@teambit/workspace.hooks.use-url-change-broadcaster": "0.0.2",
69
82
  "@teambit/workspace.ui.preserve-workspace-mode": "0.0.3",
70
83
  "@teambit/design.ui.tooltip": "0.0.383",
84
+ "@teambit/preview.ui.preview-placeholder": "0.0.569",
71
85
  "@teambit/scopes.scope-id": "0.0.9",
72
86
  "@teambit/workspace.ui.load-preview": "0.0.504",
73
87
  "@teambit/evangelist.elements.icon": "1.0.5",
74
88
  "@teambit/component.filters.base-filter": "0.0.6",
75
89
  "@teambit/design.inputs.toggle-button": "0.0.16",
90
+ "@teambit/cloud.hooks.use-cloud-scopes": "0.0.22",
76
91
  "@teambit/explorer.ui.gallery.component-grid": "0.0.496",
77
92
  "@teambit/workspace.ui.empty-workspace": "0.0.509",
78
- "@teambit/component": "1.0.1022",
79
- "@teambit/dependency-resolver": "1.0.1022",
80
- "@teambit/envs": "1.0.1022",
81
- "@teambit/legacy.extension-data": "0.0.130",
82
- "@teambit/legacy.scope": "0.0.128",
83
- "@teambit/legacy.consumer-component": "0.0.129",
84
- "@teambit/legacy.consumer": "0.0.128",
85
- "@teambit/legacy.bit-map": "0.0.185",
86
- "@teambit/logger": "0.0.1433",
87
- "@teambit/objects": "0.0.529",
88
- "@teambit/scope": "1.0.1022",
89
- "@teambit/graph": "1.0.1022",
90
- "@teambit/cli": "0.0.1340",
91
- "@teambit/config-store": "0.0.221",
92
- "@teambit/isolator": "1.0.1022",
93
- "@teambit/legacy.constants": "0.0.31",
94
- "@teambit/component-tree": "1.0.1022",
95
- "@teambit/harmony.modules.resolved-component": "0.0.515",
96
- "@teambit/legacy.utils": "0.0.39",
97
- "@teambit/watcher": "1.0.1022",
98
- "@teambit/scope.remotes": "0.0.128",
99
- "@teambit/aspect-loader": "1.0.1022",
100
- "@teambit/config": "0.0.1515",
101
- "@teambit/harmony.modules.requireable-component": "0.0.515",
102
- "@teambit/workspace.modules.node-modules-linker": "0.0.359",
103
- "@teambit/graphql": "1.0.1022",
104
- "@teambit/bundler": "1.0.1022",
105
- "@teambit/global-config": "0.0.1344",
106
- "@teambit/legacy.consumer-config": "0.0.128",
107
- "@teambit/ui": "1.0.1022",
108
- "@teambit/variants": "0.0.1608",
109
- "@teambit/component-issues": "0.0.174",
110
- "@teambit/component.sources": "0.0.180",
111
- "@teambit/git.modules.git-executable": "0.0.32",
112
- "@teambit/harmony.modules.in-memory-cache": "0.0.35",
113
- "@teambit/legacy.component-list": "0.0.182",
114
- "@teambit/legacy.scope-api": "0.0.183",
115
- "@teambit/workspace.modules.match-pattern": "0.0.522",
116
- "@teambit/component.ui.component-drawer": "0.0.484",
117
- "@teambit/lanes.hooks.use-lane-components": "0.0.304",
118
- "@teambit/ui-foundation.ui.side-bar": "0.0.935",
119
- "@teambit/command-bar": "1.0.1022",
120
- "@teambit/component.ui.component-filters.env-filter": "0.0.276",
121
- "@teambit/sidebar": "1.0.1022",
122
- "@teambit/pubsub": "1.0.1022",
123
- "@teambit/harmony.modules.concurrency": "0.0.32",
124
- "@teambit/component-descriptor": "0.0.453",
125
- "@teambit/deprecation": "1.0.1022",
126
- "@teambit/preview.ui.preview-placeholder": "0.0.569",
127
- "@teambit/cloud.hooks.use-cloud-scopes": "0.0.22"
93
+ "@teambit/component": "1.0.1023",
94
+ "@teambit/dependency-resolver": "1.0.1023",
95
+ "@teambit/envs": "1.0.1023",
96
+ "@teambit/legacy.extension-data": "0.0.131",
97
+ "@teambit/legacy.scope": "0.0.129",
98
+ "@teambit/legacy.consumer-component": "0.0.130",
99
+ "@teambit/legacy.consumer": "0.0.129",
100
+ "@teambit/legacy.bit-map": "0.0.186",
101
+ "@teambit/logger": "0.0.1434",
102
+ "@teambit/objects": "0.0.530",
103
+ "@teambit/scope": "1.0.1023",
104
+ "@teambit/graph": "1.0.1023",
105
+ "@teambit/cli": "0.0.1341",
106
+ "@teambit/config-store": "0.0.222",
107
+ "@teambit/isolator": "1.0.1023",
108
+ "@teambit/component-tree": "1.0.1023",
109
+ "@teambit/harmony.modules.load-trace": "0.0.2",
110
+ "@teambit/watcher": "1.0.1023",
111
+ "@teambit/scope.remotes": "0.0.129",
112
+ "@teambit/aspect-loader": "1.0.1023",
113
+ "@teambit/config": "0.0.1516",
114
+ "@teambit/workspace.modules.node-modules-linker": "0.0.360",
115
+ "@teambit/graphql": "1.0.1023",
116
+ "@teambit/bundler": "1.0.1023",
117
+ "@teambit/global-config": "0.0.1345",
118
+ "@teambit/legacy.consumer-config": "0.0.129",
119
+ "@teambit/ui": "1.0.1023",
120
+ "@teambit/variants": "0.0.1609",
121
+ "@teambit/component.sources": "0.0.181",
122
+ "@teambit/legacy.component-list": "0.0.183",
123
+ "@teambit/legacy.scope-api": "0.0.184",
124
+ "@teambit/command-bar": "1.0.1023",
125
+ "@teambit/sidebar": "1.0.1023",
126
+ "@teambit/pubsub": "1.0.1023",
127
+ "@teambit/deprecation": "1.0.1023"
128
128
  },
129
129
  "devDependencies": {
130
130
  "@types/lodash": "4.14.165",