@teambit/scope 1.0.227 → 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 (36) hide show
  1. package/artifacts/__bit_junit.xml +1 -1
  2. package/artifacts/preview/teambit_scope_scope-preview.js +1 -1
  3. package/artifacts/schema.json +3062 -1561
  4. package/dist/clear-cache-action.d.ts +7 -0
  5. package/dist/exceptions/component-not-found.d.ts +9 -0
  6. package/dist/exceptions/index.d.ts +2 -0
  7. package/dist/exceptions/no-id-match-pattern.d.ts +4 -0
  8. package/dist/get-scope-options.d.ts +19 -0
  9. package/dist/index.d.ts +10 -0
  10. package/dist/{preview-1712719054377.js → preview-1712822929999.js} +2 -2
  11. package/dist/routes/action.route.d.ts +10 -0
  12. package/dist/routes/delete.route.d.ts +10 -0
  13. package/dist/routes/fetch.route.d.ts +12 -0
  14. package/dist/routes/index.d.ts +4 -0
  15. package/dist/routes/put.route.d.ts +11 -0
  16. package/dist/scope-aspects-loader.d.ts +91 -0
  17. package/dist/scope-cmd.d.ts +10 -0
  18. package/dist/scope-component-loader.d.ts +36 -0
  19. package/dist/scope.aspect.d.ts +3 -0
  20. package/dist/scope.composition.d.ts +1 -0
  21. package/dist/scope.graphql.d.ts +37 -0
  22. package/dist/scope.main.runtime.d.ts +405 -0
  23. package/dist/scope.main.runtime.js +3 -0
  24. package/dist/scope.main.runtime.js.map +1 -1
  25. package/dist/scope.ui-root.d.ts +25 -0
  26. package/dist/scope.ui.drawer.d.ts +18 -0
  27. package/dist/scope.ui.runtime.d.ts +210 -0
  28. package/dist/staged-config.d.ts +29 -0
  29. package/dist/types.d.ts +10 -0
  30. package/dist/ui/menu/index.d.ts +1 -0
  31. package/dist/ui/menu/menu.d.ts +10 -0
  32. package/dist/ui/scope-overview/index.d.ts +1 -0
  33. package/dist/ui/scope-overview/scope-overview.d.ts +31 -0
  34. package/dist/ui/scope.d.ts +30 -0
  35. package/package.json +26 -26
  36. package/tsconfig.json +1 -55
@@ -0,0 +1,210 @@
1
+ import type { ComponentUI, ComponentModel } from '@teambit/component';
2
+ import { SlotRegistry } from '@teambit/harmony';
3
+ import type { RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';
4
+ import { SidebarUI, SidebarItem, SidebarItemSlot } from '@teambit/sidebar';
5
+ import { ComponentTreeNode } from '@teambit/component-tree';
6
+ import { UIRootUI as UIRoot, UiUI } from '@teambit/ui';
7
+ import React, { ComponentType, ReactNode } from 'react';
8
+ import { MenuItemSlot, MenuItem } from '@teambit/ui-foundation.ui.main-dropdown';
9
+ import { RouteProps } from 'react-router-dom';
10
+ import { MenuWidget, MenuWidgetSlot } from '@teambit/ui-foundation.ui.menu';
11
+ import { CommandBarUI } from '@teambit/command-bar';
12
+ import { ScopeModel } from '@teambit/scope.models.scope-model';
13
+ import { DrawerType } from '@teambit/ui-foundation.ui.tree.drawer';
14
+ import { LanesModel } from '@teambit/lanes.ui.models.lanes-model';
15
+ import { DrawerWidgetSlot, ComponentFiltersSlot } from '@teambit/component.ui.component-drawer';
16
+ import { ComponentFilters } from '@teambit/component.ui.component-filters.component-filter-context';
17
+ import { ComponentUrlResolver } from '@teambit/component.modules.component-url';
18
+ import { GetScopeOptions } from './get-scope-options';
19
+ export type ScopeBadge = ComponentType;
20
+ export type ScopeBadgeSlot = SlotRegistry<ScopeBadge[]>;
21
+ export type ContextSlot = SlotRegistry<ScopeContextType[]>;
22
+ export type ScopeContextType = ComponentType<{
23
+ scope: ScopeModel;
24
+ children: ReactNode;
25
+ }>;
26
+ export type SidebarSlot = SlotRegistry<ComponentTreeNode>;
27
+ export type ScopeOverview = ComponentType;
28
+ export type ScopeOverviewSlot = SlotRegistry<ScopeOverview>;
29
+ export type Corner = ComponentType;
30
+ export type CornerSlot = SlotRegistry<Corner>;
31
+ export type OverviewLine = ComponentType;
32
+ export type OverviewLineSlot = SlotRegistry<OverviewLine[]>;
33
+ export type ScopeUIConfig = {
34
+ showGallery: boolean;
35
+ useBoxAction?: string;
36
+ useBoxIcon?: string;
37
+ };
38
+ export declare class ScopeUI {
39
+ /**
40
+ * route slot.
41
+ */
42
+ private routeSlot;
43
+ /**
44
+ * component ui extension.
45
+ */
46
+ private componentUi;
47
+ /**
48
+ * menu slot
49
+ */
50
+ private menuSlot;
51
+ private sidebar;
52
+ private sidebarSlot;
53
+ private commandBarUI;
54
+ private scopeBadgeSlot;
55
+ private menuWidgetSlot;
56
+ /**
57
+ * sidebar link slot
58
+ */
59
+ private sidebarItemSlot;
60
+ /**
61
+ * main dropdown item slot
62
+ */
63
+ private menuItemSlot;
64
+ /**
65
+ * corner slot
66
+ */
67
+ private cornerSlot;
68
+ /**
69
+ * overview line slot to add new lines beneath the overview section
70
+ */
71
+ private overviewSlot;
72
+ /**
73
+ * add a new context to ui
74
+ */
75
+ private contextSlot;
76
+ private drawerWidgetSlot;
77
+ private drawerComponentsFiltersSlot;
78
+ constructor(
79
+ /**
80
+ * route slot.
81
+ */
82
+ routeSlot: RouteSlot,
83
+ /**
84
+ * component ui extension.
85
+ */
86
+ componentUi: ComponentUI,
87
+ /**
88
+ * menu slot
89
+ */
90
+ menuSlot: RouteSlot, sidebar: SidebarUI, sidebarSlot: SidebarSlot, commandBarUI: CommandBarUI, scopeBadgeSlot: ScopeBadgeSlot, menuWidgetSlot: MenuWidgetSlot,
91
+ /**
92
+ * sidebar link slot
93
+ */
94
+ sidebarItemSlot: SidebarItemSlot,
95
+ /**
96
+ * main dropdown item slot
97
+ */
98
+ menuItemSlot: MenuItemSlot,
99
+ /**
100
+ * corner slot
101
+ */
102
+ cornerSlot: CornerSlot,
103
+ /**
104
+ * overview line slot to add new lines beneath the overview section
105
+ */
106
+ overviewSlot: OverviewLineSlot,
107
+ /**
108
+ * add a new context to ui
109
+ */
110
+ contextSlot: ContextSlot, drawerWidgetSlot: DrawerWidgetSlot, drawerComponentsFiltersSlot: ComponentFiltersSlot);
111
+ private setSidebarToggle;
112
+ /**
113
+ * register a new badge into the scope overview.
114
+ */
115
+ registerBadge(...badges: ScopeBadge[]): this;
116
+ getScope(options: GetScopeOptions): import("react/jsx-runtime").JSX.Element;
117
+ /**
118
+ * register a new line beneath the scope overview section.
119
+ */
120
+ registerOverviewLine(...lines: OverviewLine[]): this;
121
+ /**
122
+ * register a route to the scope.
123
+ */
124
+ registerRoutes(routes: RouteProps[]): this;
125
+ registerMenuRoutes: (routes: RouteProps[]) => this;
126
+ private applyMenuRoutes;
127
+ getScopeMenu(): import("react/jsx-runtime").JSX.Element;
128
+ private registerExplicitRoutes;
129
+ registerMenuWidget(...menuItems: MenuWidget[]): void;
130
+ registerCorner(corner: Corner): void;
131
+ private componentUrlFunc;
132
+ registerComponentUrl(func: ComponentUrlResolver): void;
133
+ /**
134
+ * register a scope overview.
135
+ */
136
+ replaceOverview(): void;
137
+ /**
138
+ * register description.
139
+ */
140
+ replaceDescription(): void;
141
+ /**
142
+ * register metadata section.
143
+ */
144
+ replaceMetadataSection(): void;
145
+ /**
146
+ * register a metadata item.
147
+ */
148
+ registerMetadataItem(): void;
149
+ replaceComponentGrid(): void;
150
+ /**
151
+ * register metadata.
152
+ */
153
+ registerMetadata(): void;
154
+ /**
155
+ * add a new context to the scope.
156
+ */
157
+ addContext(...context: ScopeContextType[]): this;
158
+ private getContext;
159
+ registerMenuItem: (menuItems: MenuItem[]) => void;
160
+ /**
161
+ * register a sidebar Widget for the scope
162
+ */
163
+ registerSidebarWidget: (componentTreeNodes: ComponentTreeNode[]) => this;
164
+ /**
165
+ * register a sidebar link to the section above the drawers
166
+ */
167
+ registerSidebarLink: (...links: SidebarItem[]) => void;
168
+ registerDrawers: (...drawer: DrawerType[]) => this;
169
+ /**
170
+ * register component filters
171
+ */
172
+ registerDrawerComponentFilters: (filters: ComponentFilters) => void;
173
+ registerDrawerWidgets: (widgets: ReactNode[]) => void;
174
+ registerDefaultDrawers(assumeScopeInUrl?: boolean, overrideUseComponents?: () => {
175
+ components: ComponentModel[];
176
+ }, overrideUseLanes?: () => {
177
+ lanesModel: LanesModel;
178
+ }): void;
179
+ getDefaultDrawer(assumeScopeInUrl?: boolean, overrideUseComponents?: () => {
180
+ components: ComponentModel[];
181
+ }, overrideUseLanes?: () => {
182
+ lanesModel: LanesModel;
183
+ }): import("@teambit/component.ui.component-drawer").ComponentsDrawer;
184
+ uiRoot(): UIRoot;
185
+ listSidebarLinks(): (React.ComponentClass<{}, any> | React.FunctionComponent<{}>)[];
186
+ /** registers available components */
187
+ setComponents: (components: ComponentModel[]) => void;
188
+ private menuItems;
189
+ static dependencies: import("@teambit/harmony").Aspect[];
190
+ static runtime: import("@teambit/harmony").RuntimeDefinition;
191
+ static slots: (((registerFn: () => string) => SlotRegistry<RouteProps>) | ((registerFn: () => string) => SlotRegistry<ComponentTreeNode>) | ((registerFn: () => string) => SlotRegistry<DrawerWidgetSlot>) | ((registerFn: () => string) => SlotRegistry<ScopeBadge>) | ((registerFn: () => string) => SlotRegistry<MenuWidget[]>) | ((registerFn: () => string) => SlotRegistry<CornerSlot>))[];
192
+ static defaultConfig: {
193
+ showGallery: boolean;
194
+ };
195
+ static provider([ui, componentUi, sidebar, commandBarUI]: [UiUI, ComponentUI, SidebarUI, CommandBarUI], config: ScopeUIConfig, [routeSlot, menuSlot, sidebarSlot, scopeBadgeSlot, menuWidgetSlot, menuItemSlot, sidebarItemSlot, cornerSlot, overviewSlot, contextSlot, drawerWidgetSlot, componentFiltersSlot,]: [
196
+ RouteSlot,
197
+ RouteSlot,
198
+ SidebarSlot,
199
+ ScopeBadgeSlot,
200
+ MenuWidgetSlot,
201
+ MenuItemSlot,
202
+ SidebarItemSlot,
203
+ CornerSlot,
204
+ OverviewLineSlot,
205
+ ContextSlot,
206
+ DrawerWidgetSlot,
207
+ ComponentFiltersSlot
208
+ ]): Promise<ScopeUI>;
209
+ }
210
+ export default ScopeUI;
@@ -0,0 +1,29 @@
1
+ import { ComponentID, ComponentIdObj } from '@teambit/component-id';
2
+ import { LaneId } from '@teambit/lane-id';
3
+ import { Logger } from '@teambit/logger';
4
+ type Config = Record<string, any> | undefined;
5
+ type ComponentConfig = {
6
+ id: ComponentID;
7
+ config: Config;
8
+ };
9
+ type ComponentConfigObj = {
10
+ id: ComponentIdObj;
11
+ config: Config;
12
+ };
13
+ export declare class StagedConfig {
14
+ readonly filePath: string;
15
+ private componentsConfig;
16
+ private logger;
17
+ hasChanged: boolean;
18
+ constructor(filePath: string, componentsConfig: ComponentConfig[], logger: Logger);
19
+ static load(scopePath: string, logger: Logger, laneId?: LaneId): Promise<StagedConfig>;
20
+ toObject(): ComponentConfigObj[];
21
+ write(): Promise<void>;
22
+ getConfigPerId(id: ComponentID): Config;
23
+ getAll(): ComponentConfig[];
24
+ isEmpty(): boolean;
25
+ deleteFile(): Promise<void>;
26
+ addComponentConfig(id: ComponentID, config: Config): void;
27
+ removeComponentConfig(id: ComponentID): void;
28
+ }
29
+ export {};
@@ -0,0 +1,10 @@
1
+ export type Serializable = {
2
+ toString(): string;
3
+ };
4
+ export type Metadata = {
5
+ [key: string]: Serializable;
6
+ };
7
+ export type DataToPersist = {
8
+ metadata: Metadata;
9
+ files: string[];
10
+ };
@@ -0,0 +1 @@
1
+ export { ScopeMenu, ScopeUseBox } from './menu';
@@ -0,0 +1,10 @@
1
+ import { MenuProps } from '@teambit/ui-foundation.ui.menu';
2
+ /**
3
+ * scope menu.
4
+ */
5
+ export declare function ScopeMenu({ className, ...rest }: MenuProps): import("react/jsx-runtime").JSX.Element;
6
+ export type ScopeUseBoxProps = {
7
+ actionName?: string;
8
+ actionIcon?: string;
9
+ };
10
+ export declare function ScopeUseBox({ actionName, actionIcon }: ScopeUseBoxProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './scope-overview';
@@ -0,0 +1,31 @@
1
+ import { ComponentType } from 'react';
2
+ import { ScopeID } from '@teambit/scopes.scope-id';
3
+ import { type ComponentCardPluginType, type PluginProps } from '@teambit/explorer.ui.component-card';
4
+ import { ComponentModel } from '@teambit/component';
5
+ import { ComponentDescriptor } from '@teambit/component-descriptor';
6
+ import type { ScopeBadgeSlot, OverviewLineSlot } from '../../scope.ui.runtime';
7
+ export type ScopeOverviewProps = {
8
+ badgeSlot: ScopeBadgeSlot;
9
+ overviewSlot: OverviewLineSlot;
10
+ TargetOverview?: ComponentType;
11
+ };
12
+ export declare class LinkPlugin {
13
+ link(id: any): any;
14
+ }
15
+ export declare function ScopeOverview({ badgeSlot, overviewSlot, TargetOverview }: ScopeOverviewProps): import("react/jsx-runtime").JSX.Element;
16
+ type ScopeComponentCardProps = {
17
+ component?: ComponentModel;
18
+ componentDescriptor?: ComponentDescriptor;
19
+ plugins?: ComponentCardPluginType<PluginProps>[];
20
+ scope?: {
21
+ icon?: string;
22
+ backgroundIconColor?: string;
23
+ id: ScopeID;
24
+ };
25
+ componentUrl?: string;
26
+ };
27
+ export declare function ScopeComponentCard({ componentDescriptor, plugins }: ScopeComponentCardProps): import("react/jsx-runtime").JSX.Element | null;
28
+ export declare function useCardPlugins({ compModelsById, }: {
29
+ compModelsById: Map<string, ComponentModel>;
30
+ }): ComponentCardPluginType<PluginProps>[];
31
+ export {};
@@ -0,0 +1,30 @@
1
+ import { ComponentType, ReactNode } from 'react';
2
+ import 'reset-css';
3
+ import type { RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';
4
+ import type { ScopeModel } from '@teambit/scope.models.scope-model';
5
+ import { ScopeUI, ScopeBadgeSlot, ScopeContextType, CornerSlot, OverviewLineSlot } from '../scope.ui.runtime';
6
+ export type ScopeProps = {
7
+ routeSlot: RouteSlot;
8
+ menuSlot: RouteSlot;
9
+ sidebar: JSX.Element;
10
+ scopeUi: ScopeUI;
11
+ badgeSlot: ScopeBadgeSlot;
12
+ overviewLineSlot: OverviewLineSlot;
13
+ cornerSlot: CornerSlot;
14
+ context: ScopeContextType[];
15
+ TargetScopeOverview?: ComponentType;
16
+ userUseScopeQuery?: () => {
17
+ scope: ScopeModel | undefined;
18
+ };
19
+ onSidebarTogglerChange: (callback: () => void) => void;
20
+ TargetCorner?: ComponentType;
21
+ paneClassName?: string;
22
+ scopeClassName?: string;
23
+ PaneWrapper?: ComponentType<{
24
+ children: ReactNode;
25
+ }>;
26
+ };
27
+ /**
28
+ * root component of the scope
29
+ */
30
+ export declare function Scope({ routeSlot, menuSlot, sidebar, scopeUi, badgeSlot, overviewLineSlot, cornerSlot, PaneWrapper, context, paneClassName, TargetScopeOverview, TargetCorner, onSidebarTogglerChange, userUseScopeQuery, scopeClassName, }: ScopeProps): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/scope",
3
- "version": "1.0.227",
3
+ "version": "1.0.229",
4
4
  "homepage": "https://bit.cloud/teambit/scope/scope",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.scope",
8
8
  "name": "scope",
9
- "version": "1.0.227"
9
+ "version": "1.0.229"
10
10
  },
11
11
  "dependencies": {
12
12
  "fs-extra": "10.0.0",
@@ -50,39 +50,39 @@
50
50
  "@teambit/scope.ui.scope-details": "0.0.526",
51
51
  "@teambit/scopes.scope-id": "0.0.7",
52
52
  "@teambit/component.modules.component-url": "0.0.167",
53
- "@teambit/scope.models.scope-model": "0.0.507",
54
- "@teambit/scope.ui.hooks.scope-context": "0.0.501",
55
- "@teambit/aspect-loader": "1.0.227",
56
- "@teambit/cli": "0.0.860",
57
- "@teambit/compiler": "1.0.227",
58
- "@teambit/component": "1.0.227",
59
- "@teambit/dependency-resolver": "1.0.227",
60
- "@teambit/envs": "1.0.227",
61
- "@teambit/global-config": "0.0.863",
53
+ "@teambit/scope.models.scope-model": "0.0.508",
54
+ "@teambit/scope.ui.hooks.scope-context": "0.0.502",
55
+ "@teambit/aspect-loader": "1.0.229",
56
+ "@teambit/cli": "0.0.862",
57
+ "@teambit/compiler": "1.0.229",
58
+ "@teambit/component": "1.0.229",
59
+ "@teambit/dependency-resolver": "1.0.229",
60
+ "@teambit/envs": "1.0.229",
61
+ "@teambit/global-config": "0.0.865",
62
62
  "@teambit/harmony.modules.requireable-component": "0.0.497",
63
- "@teambit/isolator": "1.0.227",
64
- "@teambit/logger": "0.0.953",
65
- "@teambit/builder": "1.0.227",
66
- "@teambit/express": "0.0.959",
67
- "@teambit/graph": "1.0.227",
68
- "@teambit/graphql": "1.0.227",
69
- "@teambit/ui": "1.0.227",
63
+ "@teambit/isolator": "1.0.229",
64
+ "@teambit/logger": "0.0.955",
65
+ "@teambit/builder": "1.0.229",
66
+ "@teambit/express": "0.0.961",
67
+ "@teambit/graph": "1.0.229",
68
+ "@teambit/graphql": "1.0.229",
69
+ "@teambit/ui": "1.0.229",
70
70
  "@teambit/workspace.modules.match-pattern": "0.0.505",
71
- "@teambit/component.ui.component-drawer": "0.0.398",
72
- "@teambit/lanes.hooks.use-lane-components": "0.0.261",
71
+ "@teambit/component.ui.component-drawer": "0.0.399",
72
+ "@teambit/lanes.hooks.use-lane-components": "0.0.262",
73
73
  "@teambit/lanes.hooks.use-lanes": "0.0.264",
74
74
  "@teambit/lanes.ui.models.lanes-model": "0.0.216",
75
- "@teambit/command-bar": "1.0.227",
76
- "@teambit/component-tree": "1.0.227",
75
+ "@teambit/command-bar": "1.0.229",
76
+ "@teambit/component-tree": "1.0.229",
77
77
  "@teambit/component.ui.component-filters.component-filter-context": "0.0.222",
78
78
  "@teambit/component.ui.component-filters.deprecate-filter": "0.0.220",
79
79
  "@teambit/component.ui.component-filters.env-filter": "0.0.228",
80
80
  "@teambit/component.ui.component-filters.show-main-filter": "0.0.213",
81
- "@teambit/sidebar": "1.0.227",
81
+ "@teambit/sidebar": "1.0.229",
82
82
  "@teambit/ui-foundation.ui.react-router.slot-router": "0.0.508",
83
83
  "@teambit/ui-foundation.ui.buttons.collapser": "0.0.219",
84
- "@teambit/component-descriptor": "0.0.418",
85
- "@teambit/preview.ui.preview-placeholder": "0.0.517"
84
+ "@teambit/component-descriptor": "0.0.419",
85
+ "@teambit/preview.ui.preview-placeholder": "0.0.518"
86
86
  },
87
87
  "devDependencies": {
88
88
  "@types/fs-extra": "9.0.7",
@@ -92,7 +92,7 @@
92
92
  "@types/mocha": "9.1.0",
93
93
  "chai": "4.3.0",
94
94
  "@teambit/scope.content.scope-overview": "1.95.0",
95
- "@teambit/harmony.envs.core-aspect-env": "0.0.30"
95
+ "@teambit/harmony.envs.core-aspect-env": "0.0.33"
96
96
  },
97
97
  "peerDependencies": {
98
98
  "react": "^17.0.0 || ^18.0.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,58 +35,5 @@
36
35
  "include": [
37
36
  "**/*",
38
37
  "**/*.json"
39
- ],
40
- "references": [
41
- {
42
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_aspect-loader@1.0.227"
43
- },
44
- {
45
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.860"
46
- },
47
- {
48
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.compilation_compiler@1.0.227"
49
- },
50
- {
51
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.227"
52
- },
53
- {
54
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.envs_envs@1.0.227"
55
- },
56
- {
57
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_global-config@0.0.863"
58
- },
59
- {
60
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_isolator@1.0.227"
61
- },
62
- {
63
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_logger@0.0.953"
64
- },
65
- {
66
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.pipelines_builder@1.0.227"
67
- },
68
- {
69
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_express@0.0.959"
70
- },
71
- {
72
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.227"
73
- },
74
- {
75
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_graphql@1.0.227"
76
- },
77
- {
78
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@1.0.227"
79
- },
80
- {
81
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.explorer_command-bar@1.0.227"
82
- },
83
- {
84
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-tree@1.0.227"
85
- },
86
- {
87
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_sidebar@1.0.227"
88
- },
89
- {
90
- "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-descriptor@0.0.418"
91
- }
92
38
  ]
93
39
  }