@teambit/deprecation 1.0.1026 → 1.0.1027
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.
|
@@ -18,6 +18,13 @@ function _semver() {
|
|
|
18
18
|
};
|
|
19
19
|
return data;
|
|
20
20
|
}
|
|
21
|
+
function _bitError() {
|
|
22
|
+
const data = require("@teambit/bit-error");
|
|
23
|
+
_bitError = function () {
|
|
24
|
+
return data;
|
|
25
|
+
};
|
|
26
|
+
return data;
|
|
27
|
+
}
|
|
21
28
|
function _component() {
|
|
22
29
|
const data = require("@teambit/component");
|
|
23
30
|
_component = function () {
|
|
@@ -159,6 +166,9 @@ class DeprecationMain {
|
|
|
159
166
|
* @returns boolean whether or not the component has been deprecated
|
|
160
167
|
*/
|
|
161
168
|
async deprecate(componentId, newId, range) {
|
|
169
|
+
if (range && !_semver().default.validRange(range)) {
|
|
170
|
+
throw new (_bitError().BitError)(`the range "${range}" is invalid. see https://www.npmjs.com/package/semver#ranges for the range syntax`);
|
|
171
|
+
}
|
|
162
172
|
const results = this.workspace.bitMap.addComponentConfig(componentId, _deprecation().DeprecationAspect.id, {
|
|
163
173
|
deprecate: !range,
|
|
164
174
|
newId: newId?.toObject(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_cli","data","require","_semver","_interopRequireDefault","_component","_scope","_workspace","_graphql","_deprecation","_deprecation2","_deprecation3","_deprecateCmd","_undeprecateCmd","_issues","_pMapSeries","_dependencyResolver","_lodash","_componentIssues","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","DeprecationMain","constructor","scope","workspace","depsResolver","getDeprecationInfo","component","headComponent","getHeadComponent","config","extensions","findExtension","DeprecationAspect","id","deprecatedBackwardCompatibility","state","_consumer","deprecated","isDeprecate","Boolean","deprecate","currentTag","getTag","isDeprecateByRange","range","semver","satisfies","version","newId","ComponentID","fromObject","toString","undefined","head","hash","headTag","headComp","get","changeVersion","Error","componentId","results","bitMap","addComponentConfig","toObject","write","deprecateByCLIValues","resolveComponentId","newComponentId","unDeprecateByCLIValues","unDeprecate","addDeprecatedDependenciesIssues","components","pMapSeries","addDeprecatedDepIssue","isSelfDeprecated","isComponentDeprecated","dependencies","getComponentDependencies","removedWithUndefined","Promise","all","map","dep","isRemoved","isDeprecatedByIdWithoutLoadingComponent","removed","compact","length","issues","getOrCreate","IssuesClasses","DeprecatedDependencies","hasVersion","bitmapEntry","getBitmapEntryIfExist","isDeprecated","isUndeprecated","modelComp","getBitObjectModelComponent","legacyScope","objects","provider","graphql","componentAspect","cli","deprecation","registerAddComponentsIssues","bind","register","DeprecateCmd","UndeprecateCmd","registerShowFragments","DeprecationFragment","deprecationSchema","exports","MainRuntime","GraphqlAspect","ScopeAspect","ComponentAspect","WorkspaceAspect","CLIAspect","DependencyResolverAspect","IssuesAspect","addRuntime"],"sources":["deprecation.main.runtime.ts"],"sourcesContent":["import type { CLIMain } from '@teambit/cli';\nimport { CLIAspect, MainRuntime } from '@teambit/cli';\nimport semver from 'semver';\nimport type { ComponentMain, Component } from '@teambit/component';\nimport { ComponentAspect, ComponentID } from '@teambit/component';\nimport type { ScopeMain } from '@teambit/scope';\nimport { ScopeAspect } from '@teambit/scope';\nimport type { Workspace } from '@teambit/workspace';\nimport { WorkspaceAspect } from '@teambit/workspace';\nimport type { GraphqlMain } from '@teambit/graphql';\nimport { GraphqlAspect } from '@teambit/graphql';\nimport type { ComponentIdObj } from '@teambit/component-id';\nimport { DeprecationAspect } from './deprecation.aspect';\nimport { deprecationSchema } from './deprecation.graphql';\nimport { DeprecationFragment } from './deprecation.fragment';\nimport { DeprecateCmd } from './deprecate-cmd';\nimport { UndeprecateCmd } from './undeprecate-cmd';\nimport type { IssuesMain } from '@teambit/issues';\nimport { IssuesAspect } from '@teambit/issues';\nimport pMapSeries from 'p-map-series';\nimport type { DependencyResolverMain } from '@teambit/dependency-resolver';\nimport { DependencyResolverAspect } from '@teambit/dependency-resolver';\nimport { compact } from 'lodash';\nimport { IssuesClasses } from '@teambit/component-issues';\n\nexport type DeprecationInfo = {\n isDeprecate: boolean;\n newId?: string;\n range?: string;\n};\n\nexport type DeprecationMetadata = {\n /**\n * whether the head is deprecated\n */\n deprecate?: boolean;\n /**\n * the new id to use instead of the current one\n */\n newId?: ComponentIdObj;\n /**\n * Semver range to deprecate previous versions\n */\n range?: string;\n};\n\nexport class DeprecationMain {\n constructor(\n private scope: ScopeMain,\n private workspace: Workspace,\n private depsResolver: DependencyResolverMain\n ) {}\n\n async getDeprecationInfo(component: Component): Promise<DeprecationInfo> {\n const headComponent = await this.getHeadComponent(component);\n\n const data = headComponent.config.extensions.findExtension(DeprecationAspect.id)?.config as\n | DeprecationMetadata\n | undefined;\n const deprecatedBackwardCompatibility = component.state._consumer.deprecated;\n const isDeprecate = Boolean(data?.deprecate || deprecatedBackwardCompatibility);\n const currentTag = component.getTag();\n const isDeprecateByRange = Boolean(data?.range && currentTag && semver.satisfies(currentTag.version, data.range));\n const newId = data?.newId ? ComponentID.fromObject(data?.newId).toString() : undefined;\n return {\n isDeprecate: isDeprecate || isDeprecateByRange,\n newId,\n range: data?.range,\n };\n }\n\n private async getHeadComponent(component: Component): Promise<Component> {\n if (\n component.id.version &&\n component.head &&\n component.id.version !== component.head?.hash &&\n component.id.version !== component.headTag?.version.version\n ) {\n const headComp = this.workspace // if workspace exits, prefer using the workspace as it may be modified\n ? await this.workspace.get(component.id.changeVersion(undefined))\n : await this.scope.get(component.id.changeVersion(component.head.hash));\n if (!headComp) throw new Error(`unable to get the head of ${component.id.toString()}`);\n return headComp;\n }\n return component;\n }\n\n /**\n * mark a component as deprecated. after this change, the component will be modified.\n * tag and export the component to have it deprecated on the remote.\n *\n * @param componentId\n * @param newId\n * @returns boolean whether or not the component has been deprecated\n */\n async deprecate(componentId: ComponentID, newId?: ComponentID, range?: string): Promise<boolean> {\n const results = this.workspace.bitMap.addComponentConfig(componentId, DeprecationAspect.id, {\n deprecate: !range,\n newId: newId?.toObject(),\n range,\n });\n await this.workspace.bitMap.write(`deprecate ${componentId.toString()}`);\n\n return results;\n }\n\n async deprecateByCLIValues(id: string, newId?: string, range?: string): Promise<boolean> {\n const componentId = await this.workspace.resolveComponentId(id);\n const newComponentId = newId ? await this.workspace.resolveComponentId(newId) : undefined;\n return this.deprecate(componentId, newComponentId, range);\n }\n\n async unDeprecateByCLIValues(id: string): Promise<boolean> {\n const componentId = await this.workspace.resolveComponentId(id);\n return this.unDeprecate(componentId);\n }\n\n async unDeprecate(componentId: ComponentID) {\n const results = this.workspace.bitMap.addComponentConfig(componentId, DeprecationAspect.id, {\n deprecate: false,\n newId: '',\n });\n await this.workspace.bitMap.write(`undeprecate ${componentId.toString()}`);\n\n return results;\n }\n\n async addDeprecatedDependenciesIssues(components: Component[]) {\n await pMapSeries(components, async (component) => {\n await this.addDeprecatedDepIssue(component);\n });\n }\n\n private async addDeprecatedDepIssue(component: Component) {\n const isSelfDeprecated = await this.isComponentDeprecated(component);\n if (isSelfDeprecated) return;\n const dependencies = this.depsResolver.getComponentDependencies(component);\n const removedWithUndefined = await Promise.all(\n dependencies.map(async (dep) => {\n const isRemoved = await this.isDeprecatedByIdWithoutLoadingComponent(dep.componentId);\n if (isRemoved) return dep.componentId;\n return undefined;\n })\n );\n const removed = compact(removedWithUndefined).map((id) => id.toString());\n if (removed.length) {\n component.state.issues.getOrCreate(IssuesClasses.DeprecatedDependencies).data = removed;\n }\n }\n\n private async isComponentDeprecated(component: Component): Promise<boolean> {\n if (!component.id.hasVersion()) {\n const bitmapEntry = this.workspace.bitMap.getBitmapEntryIfExist(component.id);\n return Boolean(bitmapEntry && bitmapEntry.isDeprecated());\n }\n return this.isDeprecatedByIdWithoutLoadingComponent(component.id);\n }\n\n /**\n * performant version of isDeprecated() in case the component object is not available and loading it is expensive.\n */\n private async isDeprecatedByIdWithoutLoadingComponent(componentId: ComponentID): Promise<boolean> {\n if (!componentId.hasVersion()) return false;\n const bitmapEntry = this.workspace.bitMap.getBitmapEntryIfExist(componentId);\n if (bitmapEntry && bitmapEntry.isDeprecated()) return true;\n if (bitmapEntry && bitmapEntry.isUndeprecated()) return false;\n const modelComp = await this.workspace.scope.getBitObjectModelComponent(componentId);\n if (!modelComp) return false;\n const isDeprecated = await modelComp.isDeprecated(\n this.workspace.scope.legacyScope.objects,\n componentId.version as string\n );\n return Boolean(isDeprecated);\n }\n\n static runtime = MainRuntime;\n static dependencies = [\n GraphqlAspect,\n ScopeAspect,\n ComponentAspect,\n WorkspaceAspect,\n CLIAspect,\n DependencyResolverAspect,\n IssuesAspect,\n ];\n static async provider([graphql, scope, componentAspect, workspace, cli, depsResolver, issues]: [\n GraphqlMain,\n ScopeMain,\n ComponentMain,\n Workspace,\n CLIMain,\n DependencyResolverMain,\n IssuesMain,\n ]) {\n const deprecation = new DeprecationMain(scope, workspace, depsResolver);\n issues.registerAddComponentsIssues(deprecation.addDeprecatedDependenciesIssues.bind(deprecation));\n cli.register(new DeprecateCmd(deprecation), new UndeprecateCmd(deprecation));\n componentAspect.registerShowFragments([new DeprecationFragment(deprecation)]);\n graphql.register(() => deprecationSchema(deprecation));\n\n return deprecation;\n }\n}\n\nDeprecationAspect.addRuntime(DeprecationMain);\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_cli","data","require","_semver","_interopRequireDefault","_bitError","_component","_scope","_workspace","_graphql","_deprecation","_deprecation2","_deprecation3","_deprecateCmd","_undeprecateCmd","_issues","_pMapSeries","_dependencyResolver","_lodash","_componentIssues","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","DeprecationMain","constructor","scope","workspace","depsResolver","getDeprecationInfo","component","headComponent","getHeadComponent","config","extensions","findExtension","DeprecationAspect","id","deprecatedBackwardCompatibility","state","_consumer","deprecated","isDeprecate","Boolean","deprecate","currentTag","getTag","isDeprecateByRange","range","semver","satisfies","version","newId","ComponentID","fromObject","toString","undefined","head","hash","headTag","headComp","get","changeVersion","Error","componentId","validRange","BitError","results","bitMap","addComponentConfig","toObject","write","deprecateByCLIValues","resolveComponentId","newComponentId","unDeprecateByCLIValues","unDeprecate","addDeprecatedDependenciesIssues","components","pMapSeries","addDeprecatedDepIssue","isSelfDeprecated","isComponentDeprecated","dependencies","getComponentDependencies","removedWithUndefined","Promise","all","map","dep","isRemoved","isDeprecatedByIdWithoutLoadingComponent","removed","compact","length","issues","getOrCreate","IssuesClasses","DeprecatedDependencies","hasVersion","bitmapEntry","getBitmapEntryIfExist","isDeprecated","isUndeprecated","modelComp","getBitObjectModelComponent","legacyScope","objects","provider","graphql","componentAspect","cli","deprecation","registerAddComponentsIssues","bind","register","DeprecateCmd","UndeprecateCmd","registerShowFragments","DeprecationFragment","deprecationSchema","exports","MainRuntime","GraphqlAspect","ScopeAspect","ComponentAspect","WorkspaceAspect","CLIAspect","DependencyResolverAspect","IssuesAspect","addRuntime"],"sources":["deprecation.main.runtime.ts"],"sourcesContent":["import type { CLIMain } from '@teambit/cli';\nimport { CLIAspect, MainRuntime } from '@teambit/cli';\nimport semver from 'semver';\nimport { BitError } from '@teambit/bit-error';\nimport type { ComponentMain, Component } from '@teambit/component';\nimport { ComponentAspect, ComponentID } from '@teambit/component';\nimport type { ScopeMain } from '@teambit/scope';\nimport { ScopeAspect } from '@teambit/scope';\nimport type { Workspace } from '@teambit/workspace';\nimport { WorkspaceAspect } from '@teambit/workspace';\nimport type { GraphqlMain } from '@teambit/graphql';\nimport { GraphqlAspect } from '@teambit/graphql';\nimport type { ComponentIdObj } from '@teambit/component-id';\nimport { DeprecationAspect } from './deprecation.aspect';\nimport { deprecationSchema } from './deprecation.graphql';\nimport { DeprecationFragment } from './deprecation.fragment';\nimport { DeprecateCmd } from './deprecate-cmd';\nimport { UndeprecateCmd } from './undeprecate-cmd';\nimport type { IssuesMain } from '@teambit/issues';\nimport { IssuesAspect } from '@teambit/issues';\nimport pMapSeries from 'p-map-series';\nimport type { DependencyResolverMain } from '@teambit/dependency-resolver';\nimport { DependencyResolverAspect } from '@teambit/dependency-resolver';\nimport { compact } from 'lodash';\nimport { IssuesClasses } from '@teambit/component-issues';\n\nexport type DeprecationInfo = {\n isDeprecate: boolean;\n newId?: string;\n range?: string;\n};\n\nexport type DeprecationMetadata = {\n /**\n * whether the head is deprecated\n */\n deprecate?: boolean;\n /**\n * the new id to use instead of the current one\n */\n newId?: ComponentIdObj;\n /**\n * Semver range to deprecate previous versions\n */\n range?: string;\n};\n\nexport class DeprecationMain {\n constructor(\n private scope: ScopeMain,\n private workspace: Workspace,\n private depsResolver: DependencyResolverMain\n ) {}\n\n async getDeprecationInfo(component: Component): Promise<DeprecationInfo> {\n const headComponent = await this.getHeadComponent(component);\n\n const data = headComponent.config.extensions.findExtension(DeprecationAspect.id)?.config as\n | DeprecationMetadata\n | undefined;\n const deprecatedBackwardCompatibility = component.state._consumer.deprecated;\n const isDeprecate = Boolean(data?.deprecate || deprecatedBackwardCompatibility);\n const currentTag = component.getTag();\n const isDeprecateByRange = Boolean(data?.range && currentTag && semver.satisfies(currentTag.version, data.range));\n const newId = data?.newId ? ComponentID.fromObject(data?.newId).toString() : undefined;\n return {\n isDeprecate: isDeprecate || isDeprecateByRange,\n newId,\n range: data?.range,\n };\n }\n\n private async getHeadComponent(component: Component): Promise<Component> {\n if (\n component.id.version &&\n component.head &&\n component.id.version !== component.head?.hash &&\n component.id.version !== component.headTag?.version.version\n ) {\n const headComp = this.workspace // if workspace exits, prefer using the workspace as it may be modified\n ? await this.workspace.get(component.id.changeVersion(undefined))\n : await this.scope.get(component.id.changeVersion(component.head.hash));\n if (!headComp) throw new Error(`unable to get the head of ${component.id.toString()}`);\n return headComp;\n }\n return component;\n }\n\n /**\n * mark a component as deprecated. after this change, the component will be modified.\n * tag and export the component to have it deprecated on the remote.\n *\n * @param componentId\n * @param newId\n * @returns boolean whether or not the component has been deprecated\n */\n async deprecate(componentId: ComponentID, newId?: ComponentID, range?: string): Promise<boolean> {\n if (range && !semver.validRange(range)) {\n throw new BitError(\n `the range \"${range}\" is invalid. see https://www.npmjs.com/package/semver#ranges for the range syntax`\n );\n }\n const results = this.workspace.bitMap.addComponentConfig(componentId, DeprecationAspect.id, {\n deprecate: !range,\n newId: newId?.toObject(),\n range,\n });\n await this.workspace.bitMap.write(`deprecate ${componentId.toString()}`);\n\n return results;\n }\n\n async deprecateByCLIValues(id: string, newId?: string, range?: string): Promise<boolean> {\n const componentId = await this.workspace.resolveComponentId(id);\n const newComponentId = newId ? await this.workspace.resolveComponentId(newId) : undefined;\n return this.deprecate(componentId, newComponentId, range);\n }\n\n async unDeprecateByCLIValues(id: string): Promise<boolean> {\n const componentId = await this.workspace.resolveComponentId(id);\n return this.unDeprecate(componentId);\n }\n\n async unDeprecate(componentId: ComponentID) {\n const results = this.workspace.bitMap.addComponentConfig(componentId, DeprecationAspect.id, {\n deprecate: false,\n newId: '',\n });\n await this.workspace.bitMap.write(`undeprecate ${componentId.toString()}`);\n\n return results;\n }\n\n async addDeprecatedDependenciesIssues(components: Component[]) {\n await pMapSeries(components, async (component) => {\n await this.addDeprecatedDepIssue(component);\n });\n }\n\n private async addDeprecatedDepIssue(component: Component) {\n const isSelfDeprecated = await this.isComponentDeprecated(component);\n if (isSelfDeprecated) return;\n const dependencies = this.depsResolver.getComponentDependencies(component);\n const removedWithUndefined = await Promise.all(\n dependencies.map(async (dep) => {\n const isRemoved = await this.isDeprecatedByIdWithoutLoadingComponent(dep.componentId);\n if (isRemoved) return dep.componentId;\n return undefined;\n })\n );\n const removed = compact(removedWithUndefined).map((id) => id.toString());\n if (removed.length) {\n component.state.issues.getOrCreate(IssuesClasses.DeprecatedDependencies).data = removed;\n }\n }\n\n private async isComponentDeprecated(component: Component): Promise<boolean> {\n if (!component.id.hasVersion()) {\n const bitmapEntry = this.workspace.bitMap.getBitmapEntryIfExist(component.id);\n return Boolean(bitmapEntry && bitmapEntry.isDeprecated());\n }\n return this.isDeprecatedByIdWithoutLoadingComponent(component.id);\n }\n\n /**\n * performant version of isDeprecated() in case the component object is not available and loading it is expensive.\n */\n private async isDeprecatedByIdWithoutLoadingComponent(componentId: ComponentID): Promise<boolean> {\n if (!componentId.hasVersion()) return false;\n const bitmapEntry = this.workspace.bitMap.getBitmapEntryIfExist(componentId);\n if (bitmapEntry && bitmapEntry.isDeprecated()) return true;\n if (bitmapEntry && bitmapEntry.isUndeprecated()) return false;\n const modelComp = await this.workspace.scope.getBitObjectModelComponent(componentId);\n if (!modelComp) return false;\n const isDeprecated = await modelComp.isDeprecated(\n this.workspace.scope.legacyScope.objects,\n componentId.version as string\n );\n return Boolean(isDeprecated);\n }\n\n static runtime = MainRuntime;\n static dependencies = [\n GraphqlAspect,\n ScopeAspect,\n ComponentAspect,\n WorkspaceAspect,\n CLIAspect,\n DependencyResolverAspect,\n IssuesAspect,\n ];\n static async provider([graphql, scope, componentAspect, workspace, cli, depsResolver, issues]: [\n GraphqlMain,\n ScopeMain,\n ComponentMain,\n Workspace,\n CLIMain,\n DependencyResolverMain,\n IssuesMain,\n ]) {\n const deprecation = new DeprecationMain(scope, workspace, depsResolver);\n issues.registerAddComponentsIssues(deprecation.addDeprecatedDependenciesIssues.bind(deprecation));\n cli.register(new DeprecateCmd(deprecation), new UndeprecateCmd(deprecation));\n componentAspect.registerShowFragments([new DeprecationFragment(deprecation)]);\n graphql.register(() => deprecationSchema(deprecation));\n\n return deprecation;\n }\n}\n\nDeprecationAspect.addRuntime(DeprecationMain);\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_deprecation@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_deprecation@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_deprecation@1.0.1027/dist/deprecation.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_deprecation@1.0.1027/dist/deprecation.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/deprecation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1027",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/deprecation",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "deprecation",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.1027"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"graphql-tag": "2.12.1",
|
|
@@ -15,17 +15,18 @@
|
|
|
15
15
|
"semver": "7.7.1",
|
|
16
16
|
"@teambit/cli": "0.0.1341",
|
|
17
17
|
"@teambit/harmony": "0.4.7",
|
|
18
|
+
"@teambit/bit-error": "0.0.404",
|
|
18
19
|
"@teambit/component-id": "1.2.4",
|
|
19
20
|
"@teambit/component-issues": "0.0.174",
|
|
20
21
|
"@teambit/component.ui.component-deprecated": "0.0.41",
|
|
21
|
-
"@teambit/component": "1.0.
|
|
22
|
-
"@teambit/graphql": "1.0.
|
|
23
|
-
"@teambit/dependency-resolver": "1.0.
|
|
24
|
-
"@teambit/issues": "1.0.
|
|
25
|
-
"@teambit/scope": "1.0.
|
|
26
|
-
"@teambit/workspace": "1.0.
|
|
27
|
-
"@teambit/docs": "1.0.
|
|
28
|
-
"@teambit/ui": "1.0.
|
|
22
|
+
"@teambit/component": "1.0.1027",
|
|
23
|
+
"@teambit/graphql": "1.0.1027",
|
|
24
|
+
"@teambit/dependency-resolver": "1.0.1027",
|
|
25
|
+
"@teambit/issues": "1.0.1027",
|
|
26
|
+
"@teambit/scope": "1.0.1027",
|
|
27
|
+
"@teambit/workspace": "1.0.1027",
|
|
28
|
+
"@teambit/docs": "1.0.1027",
|
|
29
|
+
"@teambit/ui": "1.0.1027"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
32
|
"@types/lodash": "4.14.165",
|