@teambit/workspace 1.0.228 → 1.0.229

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 (64) hide show
  1. package/artifacts/__bit_junit.xml +1 -1
  2. package/artifacts/preview/teambit_workspace_workspace-preview.js +1 -1
  3. package/artifacts/schema.json +2434 -568
  4. package/dist/aspects-merger.d.ts +58 -0
  5. package/dist/bit-map.d.ts +75 -0
  6. package/dist/build-graph-from-fs.d.ts +64 -0
  7. package/dist/build-graph-ids-from-fs.d.ts +48 -0
  8. package/dist/capsule.cmd.d.ts +81 -0
  9. package/dist/component-config-file/component-config-file.d.ts +34 -0
  10. package/dist/component-config-file/exceptions/already-exists.d.ts +4 -0
  11. package/dist/component-config-file/exceptions/index.d.ts +1 -0
  12. package/dist/component-config-file/index.d.ts +2 -0
  13. package/dist/component-tree.widget.d.ts +4 -0
  14. package/dist/constants.d.ts +1 -0
  15. package/dist/eject-conf.cmd.d.ts +20 -0
  16. package/dist/envs-subcommands/envs-replace.cmd.d.ts +19 -0
  17. package/dist/envs-subcommands/envs-set.cmd.d.ts +20 -0
  18. package/dist/envs-subcommands/envs-unset.cmd.d.ts +16 -0
  19. package/dist/envs-subcommands/envs-update.cmd.d.ts +19 -0
  20. package/dist/events/index.d.ts +3 -0
  21. package/dist/events/on-component-add-event.d.ts +14 -0
  22. package/dist/events/on-component-change-event.d.ts +14 -0
  23. package/dist/events/on-component-removed-event.d.ts +12 -0
  24. package/dist/exceptions/incorrect-env-aspect.d.ts +4 -0
  25. package/dist/exceptions/merge-config-conflict.d.ts +4 -0
  26. package/dist/exceptions/outside-workspace.d.ts +4 -0
  27. package/dist/filter.d.ts +27 -0
  28. package/dist/index.d.ts +20 -0
  29. package/dist/merge-conflict-file.d.ts +23 -0
  30. package/dist/on-component-events.d.ts +16 -0
  31. package/dist/pattern.cmd.d.ts +19 -0
  32. package/dist/{preview-1712805335812.js → preview-1712822929999.js} +2 -2
  33. package/dist/scope-subcommands/scope-set.cmd.d.ts +16 -0
  34. package/dist/types.d.ts +65 -0
  35. package/dist/ui/index.d.ts +1 -0
  36. package/dist/ui/workspace/default-component.d.ts +7 -0
  37. package/dist/ui/workspace/index.d.ts +1 -0
  38. package/dist/ui/workspace/use-workspace.d.ts +32 -0
  39. package/dist/ui/workspace/workspace-context.d.ts +3 -0
  40. package/dist/ui/workspace/workspace-model.d.ts +68 -0
  41. package/dist/ui/workspace/workspace-overview/index.d.ts +1 -0
  42. package/dist/ui/workspace/workspace-overview/link-plugin.d.ts +3 -0
  43. package/dist/ui/workspace/workspace-overview/workspace-overview.d.ts +6 -0
  44. package/dist/ui/workspace/workspace-provider.d.ts +16 -0
  45. package/dist/ui/workspace/workspace.d.ts +14 -0
  46. package/dist/use.cmd.d.ts +19 -0
  47. package/dist/workspace-aspects-loader.d.ts +121 -0
  48. package/dist/workspace-component/comp-files.d.ts +22 -0
  49. package/dist/workspace-component/component-status-loader.d.ts +38 -0
  50. package/dist/workspace-component/component-status.d.ts +75 -0
  51. package/dist/workspace-component/index.d.ts +2 -0
  52. package/dist/workspace-component/workspace-component-loader.d.ts +100 -0
  53. package/dist/workspace-component/workspace-component.d.ts +49 -0
  54. package/dist/workspace-section.d.ts +0 -0
  55. package/dist/workspace.aspect.d.ts +3 -0
  56. package/dist/workspace.composition.d.ts +1 -0
  57. package/dist/workspace.d.ts +543 -0
  58. package/dist/workspace.graphql.d.ts +44 -0
  59. package/dist/workspace.main.runtime.d.ts +64 -0
  60. package/dist/workspace.ui-root.d.ts +43 -0
  61. package/dist/workspace.ui.drawer.d.ts +13 -0
  62. package/dist/workspace.ui.runtime.d.ts +99 -0
  63. package/package.json +29 -29
  64. package/tsconfig.json +1 -67
@@ -0,0 +1,64 @@
1
+ import { PubsubMain } from '@teambit/pubsub';
2
+ import { BundlerMain } from '@teambit/bundler';
3
+ import { CLIMain } from '@teambit/cli';
4
+ import { EnvsMain } from '@teambit/envs';
5
+ import { GraphqlMain } from '@teambit/graphql';
6
+ import { Harmony, SlotRegistry } from '@teambit/harmony';
7
+ import { IsolatorMain } from '@teambit/isolator';
8
+ import { LoggerMain } from '@teambit/logger';
9
+ import { ScopeMain } from '@teambit/scope';
10
+ import { UiMain } from '@teambit/ui';
11
+ import { GlobalConfigMain } from '@teambit/global-config';
12
+ import type { AspectLoaderMain } from '@teambit/aspect-loader';
13
+ import { DependencyResolverMain } from '@teambit/dependency-resolver';
14
+ import type { ComponentMain, Component } from '@teambit/component';
15
+ import type { VariantsMain } from '@teambit/variants';
16
+ import { ComponentID } from '@teambit/component-id';
17
+ import { OnComponentAdd, OnComponentChange, OnComponentRemove, OnComponentLoad } from './on-component-events';
18
+ import { WorkspaceExtConfig } from './types';
19
+ import { Workspace } from './workspace';
20
+ export type WorkspaceDeps = [
21
+ PubsubMain,
22
+ CLIMain,
23
+ ScopeMain,
24
+ ComponentMain,
25
+ IsolatorMain,
26
+ DependencyResolverMain,
27
+ VariantsMain,
28
+ LoggerMain,
29
+ GraphqlMain,
30
+ UiMain,
31
+ BundlerMain,
32
+ AspectLoaderMain,
33
+ EnvsMain,
34
+ GlobalConfigMain
35
+ ];
36
+ export type OnComponentLoadSlot = SlotRegistry<OnComponentLoad>;
37
+ export type OnComponentChangeSlot = SlotRegistry<OnComponentChange>;
38
+ export type OnComponentAddSlot = SlotRegistry<OnComponentAdd>;
39
+ export type OnComponentRemoveSlot = SlotRegistry<OnComponentRemove>;
40
+ export type OnBitmapChange = () => Promise<void>;
41
+ export type OnBitmapChangeSlot = SlotRegistry<OnBitmapChange>;
42
+ export type OnWorkspaceConfigChange = () => Promise<void>;
43
+ export type OnWorkspaceConfigChangeSlot = SlotRegistry<OnWorkspaceConfigChange>;
44
+ export type OnAspectsResolve = (aspectsComponents: Component[]) => Promise<void>;
45
+ export type OnAspectsResolveSlot = SlotRegistry<OnAspectsResolve>;
46
+ export type OnRootAspectAdded = (aspectsId: ComponentID, inWs: boolean) => Promise<void>;
47
+ export type OnRootAspectAddedSlot = SlotRegistry<OnRootAspectAdded>;
48
+ export declare class WorkspaceMain {
49
+ static runtime: import("@teambit/harmony").RuntimeDefinition;
50
+ static dependencies: import("@teambit/harmony").Aspect[];
51
+ static slots: (((registerFn: () => string) => SlotRegistry<OnComponentLoad>) | ((registerFn: () => string) => SlotRegistry<OnComponentChange>) | ((registerFn: () => string) => SlotRegistry<OnComponentAdd>) | ((registerFn: () => string) => SlotRegistry<OnComponentRemove>) | ((registerFn: () => string) => SlotRegistry<OnAspectsResolve>) | ((registerFn: () => string) => SlotRegistry<OnRootAspectAdded>))[];
52
+ static provider([pubsub, cli, scope, component, isolator, dependencyResolver, variants, loggerExt, graphql, ui, bundler, aspectLoader, envs, globalConfig,]: WorkspaceDeps, config: WorkspaceExtConfig, [onComponentLoadSlot, onComponentChangeSlot, onComponentAddSlot, onComponentRemoveSlot, onAspectsResolveSlot, onRootAspectAddedSlot, onBitmapChangeSlot, onWorkspaceConfigChangeSlot,]: [
53
+ OnComponentLoadSlot,
54
+ OnComponentChangeSlot,
55
+ OnComponentAddSlot,
56
+ OnComponentRemoveSlot,
57
+ OnAspectsResolveSlot,
58
+ OnRootAspectAddedSlot,
59
+ OnBitmapChangeSlot,
60
+ OnWorkspaceConfigChangeSlot
61
+ ], harmony: Harmony): Promise<Workspace | undefined>;
62
+ static defineRuntime: string;
63
+ }
64
+ export default WorkspaceMain;
@@ -0,0 +1,43 @@
1
+ import { BundlerMain } from '@teambit/bundler';
2
+ import { Component, ComponentID, ResolveAspectsOptions } from '@teambit/component';
3
+ import { UIRoot } from '@teambit/ui';
4
+ import { GetBitMapComponentOptions } from '@teambit/legacy/dist/consumer/bit-map/bit-map';
5
+ import { PathOsBased } from '@teambit/legacy/dist/utils/path';
6
+ import { Workspace } from './workspace';
7
+ export declare class WorkspaceUIRoot implements UIRoot {
8
+ /**
9
+ * workspace extension.
10
+ */
11
+ private workspace;
12
+ /**
13
+ * bundler extension
14
+ */
15
+ private bundler;
16
+ constructor(
17
+ /**
18
+ * workspace extension.
19
+ */
20
+ workspace: Workspace,
21
+ /**
22
+ * bundler extension
23
+ */
24
+ bundler: BundlerMain);
25
+ priority: boolean;
26
+ get name(): string;
27
+ get path(): string;
28
+ get configFile(): string;
29
+ buildOptions: {
30
+ ssr: boolean;
31
+ launchBrowserOnStart: boolean;
32
+ prebundle: boolean;
33
+ };
34
+ resolveAspects(runtimeName: string, componentIds?: ComponentID[], opts?: ResolveAspectsOptions): Promise<import("@teambit/aspect-loader").AspectDefinition[]>;
35
+ resolvePattern(pattern: string): Promise<Component[]>;
36
+ getConfig(): {};
37
+ /**
38
+ * proxy to `workspace.componentDir()`
39
+ */
40
+ componentDir(componentId: ComponentID, bitMapOptions?: GetBitMapComponentOptions, options?: {
41
+ relative: boolean;
42
+ }): PathOsBased;
43
+ }
@@ -0,0 +1,13 @@
1
+ import { ComponentsDrawer, ComponentFiltersSlot, DrawerWidgetSlot } from '@teambit/component.ui.component-drawer';
2
+ import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
3
+ import { SidebarWidgetSlot } from './workspace.ui.runtime';
4
+ export type WorkspaceDrawerProps = {
5
+ treeWidgets: SidebarWidgetSlot;
6
+ filtersSlot: ComponentFiltersSlot;
7
+ drawerWidgetSlot: DrawerWidgetSlot;
8
+ overrideUseLanes?: () => {
9
+ lanesModel?: LanesModel;
10
+ loading?: boolean;
11
+ };
12
+ };
13
+ export declare const workspaceDrawer: ({ treeWidgets, filtersSlot, drawerWidgetSlot, overrideUseLanes: useLanesFromProps, }: WorkspaceDrawerProps) => ComponentsDrawer;
@@ -0,0 +1,99 @@
1
+ import { ComponentUI, ComponentModel } from '@teambit/component';
2
+ import { ComponentTreeUI, ComponentTreeNode } from '@teambit/component-tree';
3
+ import { SlotRegistry } from '@teambit/harmony';
4
+ import type { RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';
5
+ import { MenuWidgetSlot, MenuWidget } from '@teambit/ui-foundation.ui.menu';
6
+ import { SidebarUI, SidebarItem, SidebarItemSlot } from '@teambit/sidebar';
7
+ import { MenuItemSlot, MenuItem } from '@teambit/ui-foundation.ui.main-dropdown';
8
+ import { UIRootUI as UIRoot, UiUI } from '@teambit/ui';
9
+ import { GraphUI } from '@teambit/graph';
10
+ import React, { ReactNode } from 'react';
11
+ import { RouteProps } from 'react-router-dom';
12
+ import { CommandBarUI } from '@teambit/command-bar';
13
+ import type { DrawerType } from '@teambit/ui-foundation.ui.tree.drawer';
14
+ import { ComponentFilters } from '@teambit/component.ui.component-filters.component-filter-context';
15
+ import { DrawerWidgetSlot, ComponentFiltersSlot } from '@teambit/component.ui.component-drawer';
16
+ export type SidebarWidgetSlot = SlotRegistry<ComponentTreeNode>;
17
+ export declare class WorkspaceUI {
18
+ /**
19
+ * route slot.
20
+ */
21
+ private routeSlot;
22
+ /**
23
+ * component ui extension.
24
+ */
25
+ private componentUi;
26
+ /**
27
+ * menu slot
28
+ */
29
+ private menuSlot;
30
+ private menuItemSlot;
31
+ private sidebar;
32
+ private sidebarSlot;
33
+ /**
34
+ * sidebar link slot
35
+ */
36
+ private sidebarItemSlot;
37
+ private drawerWidgetSlot;
38
+ private drawerComponentsFiltersSlot;
39
+ private commandBarUI;
40
+ private menuWidgetSlot;
41
+ constructor(
42
+ /**
43
+ * route slot.
44
+ */
45
+ routeSlot: RouteSlot,
46
+ /**
47
+ * component ui extension.
48
+ */
49
+ componentUi: ComponentUI,
50
+ /**
51
+ * menu slot
52
+ */
53
+ menuSlot: RouteSlot, menuItemSlot: MenuItemSlot, sidebar: SidebarUI, sidebarSlot: SidebarWidgetSlot,
54
+ /**
55
+ * sidebar link slot
56
+ */
57
+ sidebarItemSlot: SidebarItemSlot, drawerWidgetSlot: DrawerWidgetSlot, drawerComponentsFiltersSlot: ComponentFiltersSlot, commandBarUI: CommandBarUI, menuWidgetSlot: MenuWidgetSlot);
58
+ private setKeyBindHandler;
59
+ /**
60
+ * register a route to the workspace.
61
+ */
62
+ registerRoutes(routes: RouteProps[]): this;
63
+ registerDrawers(...drawers: DrawerType[]): this;
64
+ registerSidebarWidget(componentTreeNode: ComponentTreeNode): this;
65
+ registerMenuItem: (menuItems: MenuItem[]) => void;
66
+ registerMenuWidget: (menuWidgets: MenuWidget[]) => void;
67
+ registerMenuRoutes: (routes: RouteProps[]) => this;
68
+ setComponents: (components: ComponentModel[]) => void;
69
+ registerSidebarLink: (...links: SidebarItem[]) => void;
70
+ /**
71
+ * register component filters
72
+ */
73
+ registerDrawerComponentFilters: (filters: ComponentFilters) => void;
74
+ registerDrawerWidgets: (widgets: ReactNode[]) => void;
75
+ uiRoot(): UIRoot;
76
+ listSidebarItems(): (React.ComponentClass<{}, any> | React.FunctionComponent<{}>)[];
77
+ private menuItems;
78
+ static dependencies: import("@teambit/harmony").Aspect[];
79
+ static runtime: import("@teambit/harmony").RuntimeDefinition;
80
+ static slots: (((registerFn: () => string) => SlotRegistry<RouteProps>) | ((registerFn: () => string) => SlotRegistry<ComponentTreeNode>) | ((registerFn: () => string) => SlotRegistry<DrawerWidgetSlot>))[];
81
+ static provider([ui, componentUi, sidebar, componentTree, commandBarUI, graphUI]: [
82
+ UiUI,
83
+ ComponentUI,
84
+ SidebarUI,
85
+ ComponentTreeUI,
86
+ CommandBarUI,
87
+ GraphUI
88
+ ], config: any, [routeSlot, menuSlot, menuItemSlot, sidebarSlot, sidebarItemSlot, drawerWidgetSlot, drawerComponentsFiltersSlot, menuWidgetSlot,]: [
89
+ RouteSlot,
90
+ RouteSlot,
91
+ MenuItemSlot,
92
+ SidebarWidgetSlot,
93
+ SidebarItemSlot,
94
+ DrawerWidgetSlot,
95
+ ComponentFiltersSlot,
96
+ MenuWidgetSlot
97
+ ]): Promise<WorkspaceUI>;
98
+ }
99
+ export default WorkspaceUI;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/workspace",
3
- "version": "1.0.228",
3
+ "version": "1.0.229",
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.228"
9
+ "version": "1.0.229"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -54,47 +54,47 @@
54
54
  "@teambit/explorer.ui.gallery.component-grid": "0.0.496",
55
55
  "@teambit/scopes.scope-id": "0.0.7",
56
56
  "@teambit/workspace.ui.empty-workspace": "0.0.508",
57
- "@teambit/component": "1.0.228",
58
- "@teambit/dependency-resolver": "1.0.228",
59
- "@teambit/envs": "1.0.228",
60
- "@teambit/logger": "0.0.954",
61
- "@teambit/scope": "1.0.228",
62
- "@teambit/graph": "1.0.228",
63
- "@teambit/cli": "0.0.861",
64
- "@teambit/isolator": "1.0.228",
65
- "@teambit/component-tree": "1.0.228",
57
+ "@teambit/component": "1.0.229",
58
+ "@teambit/dependency-resolver": "1.0.229",
59
+ "@teambit/envs": "1.0.229",
60
+ "@teambit/logger": "0.0.955",
61
+ "@teambit/scope": "1.0.229",
62
+ "@teambit/graph": "1.0.229",
63
+ "@teambit/cli": "0.0.862",
64
+ "@teambit/isolator": "1.0.229",
65
+ "@teambit/component-tree": "1.0.229",
66
66
  "@teambit/harmony.modules.resolved-component": "0.0.497",
67
- "@teambit/watcher": "1.0.228",
68
- "@teambit/aspect-loader": "1.0.228",
69
- "@teambit/config": "0.0.979",
70
- "@teambit/global-config": "0.0.864",
67
+ "@teambit/watcher": "1.0.229",
68
+ "@teambit/aspect-loader": "1.0.229",
69
+ "@teambit/config": "0.0.980",
70
+ "@teambit/global-config": "0.0.865",
71
71
  "@teambit/harmony.modules.requireable-component": "0.0.497",
72
72
  "@teambit/toolbox.modules.module-resolver": "0.0.7",
73
73
  "@teambit/workspace.modules.node-modules-linker": "0.0.167",
74
- "@teambit/graphql": "1.0.228",
75
- "@teambit/bundler": "1.0.228",
76
- "@teambit/pubsub": "1.0.228",
77
- "@teambit/ui": "1.0.228",
78
- "@teambit/variants": "0.0.1072",
74
+ "@teambit/graphql": "1.0.229",
75
+ "@teambit/bundler": "1.0.229",
76
+ "@teambit/pubsub": "1.0.229",
77
+ "@teambit/ui": "1.0.229",
78
+ "@teambit/variants": "0.0.1073",
79
79
  "@teambit/component-issues": "0.0.143",
80
80
  "@teambit/workspace.modules.match-pattern": "0.0.505",
81
- "@teambit/component.ui.component-drawer": "0.0.398",
82
- "@teambit/lanes.hooks.use-lane-components": "0.0.261",
81
+ "@teambit/component.ui.component-drawer": "0.0.399",
82
+ "@teambit/lanes.hooks.use-lane-components": "0.0.262",
83
83
  "@teambit/lanes.hooks.use-lanes": "0.0.264",
84
84
  "@teambit/lanes.ui.models.lanes-model": "0.0.216",
85
- "@teambit/command-bar": "1.0.228",
85
+ "@teambit/command-bar": "1.0.229",
86
86
  "@teambit/component.ui.component-filters.component-filter-context": "0.0.222",
87
87
  "@teambit/component.ui.component-filters.deprecate-filter": "0.0.220",
88
88
  "@teambit/component.ui.component-filters.env-filter": "0.0.228",
89
89
  "@teambit/component.ui.component-filters.show-main-filter": "0.0.213",
90
- "@teambit/sidebar": "1.0.228",
90
+ "@teambit/sidebar": "1.0.229",
91
91
  "@teambit/ui-foundation.ui.react-router.slot-router": "0.0.508",
92
- "@teambit/component-descriptor": "0.0.418",
93
- "@teambit/deprecation": "1.0.228",
92
+ "@teambit/component-descriptor": "0.0.419",
93
+ "@teambit/deprecation": "1.0.229",
94
94
  "@teambit/ui-foundation.ui.buttons.collapser": "0.0.219",
95
95
  "@teambit/cloud.hooks.use-cloud-scopes": "0.0.3",
96
- "@teambit/preview.ui.preview-placeholder": "0.0.517",
97
- "@teambit/workspace.ui.workspace-component-card": "0.0.525"
96
+ "@teambit/preview.ui.preview-placeholder": "0.0.518",
97
+ "@teambit/workspace.ui.workspace-component-card": "0.0.526"
98
98
  },
99
99
  "devDependencies": {
100
100
  "@types/lodash": "4.14.165",
@@ -108,7 +108,7 @@
108
108
  "@types/mocha": "9.1.0",
109
109
  "chai": "4.3.0",
110
110
  "@teambit/workspace.content.workspace-overview": "1.95.0",
111
- "@teambit/harmony.envs.core-aspect-env": "0.0.30"
111
+ "@teambit/harmony.envs.core-aspect-env": "0.0.33"
112
112
  },
113
113
  "peerDependencies": {
114
114
  "@apollo/client": "^3.6.0",
package/tsconfig.json CHANGED
@@ -20,8 +20,7 @@
20
20
  "emitDeclarationOnly": true,
21
21
  "strict": true,
22
22
  "strictPropertyInitialization": false,
23
- "noImplicitAny": false,
24
- "composite": true
23
+ "noImplicitAny": false
25
24
  },
26
25
  "exclude": [
27
26
  "artifacts",
@@ -36,70 +35,5 @@
36
35
  "include": [
37
36
  "**/*",
38
37
  "**/*.json"
39
- ],
40
- "references": [
41
- {
42
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.228"
43
- },
44
- {
45
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.envs_envs@1.0.228"
46
- },
47
- {
48
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_logger@0.0.954"
49
- },
50
- {
51
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_scope@1.0.228"
52
- },
53
- {
54
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.228"
55
- },
56
- {
57
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
58
- },
59
- {
60
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_isolator@1.0.228"
61
- },
62
- {
63
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-tree@1.0.228"
64
- },
65
- {
66
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.workspace_watcher@1.0.228"
67
- },
68
- {
69
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_aspect-loader@1.0.228"
70
- },
71
- {
72
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_config@0.0.979"
73
- },
74
- {
75
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_global-config@0.0.864"
76
- },
77
- {
78
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_graphql@1.0.228"
79
- },
80
- {
81
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_bundler@1.0.228"
82
- },
83
- {
84
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_pubsub@1.0.228"
85
- },
86
- {
87
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@1.0.228"
88
- },
89
- {
90
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.workspace_variants@0.0.1072"
91
- },
92
- {
93
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.explorer_command-bar@1.0.228"
94
- },
95
- {
96
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_sidebar@1.0.228"
97
- },
98
- {
99
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-descriptor@0.0.418"
100
- },
101
- {
102
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_deprecation@1.0.228"
103
- }
104
38
  ]
105
39
  }