@teambit/schema 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.
- package/artifacts/__bit_junit.xml +2 -2
- package/artifacts/preview/teambit_semantics_schema-preview.js +1 -1
- package/artifacts/schema.json +322 -67
- package/dist/exceptions/index.d.ts +1 -0
- package/dist/exceptions/parser-not-found.d.ts +4 -0
- package/dist/index.d.ts +9 -0
- package/dist/mock/button/button.composition.d.ts +10 -0
- package/dist/mock/button/button.d.ts +20 -0
- package/dist/mock/button/index.d.ts +120 -0
- package/dist/parser.d.ts +11 -0
- package/dist/{preview-1712805335812.js → preview-1712822929999.js} +3 -3
- package/dist/schema-env.d.ts +9 -0
- package/dist/schema-extractor.d.ts +22 -0
- package/dist/schema.aspect.d.ts +2 -0
- package/dist/schema.cmd.d.ts +18 -0
- package/dist/schema.composition.d.ts +1 -0
- package/dist/schema.graphql.d.ts +3 -0
- package/dist/schema.main.runtime.d.ts +92 -0
- package/dist/schema.service.d.ts +14 -0
- package/dist/schema.spec.d.ts +1 -0
- package/dist/schema.task.d.ts +20 -0
- package/package.json +14 -14
- package/tsconfig.json +1 -37
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ParserNotFound } from './parser-not-found';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SchemaAspect } from './schema.aspect';
|
|
2
|
+
export type { Parser } from './parser';
|
|
3
|
+
export type { SchemaExtractor } from './schema-extractor';
|
|
4
|
+
export type { SchemaExtractorOptions } from './schema-extractor';
|
|
5
|
+
export { SchemaTask, SCHEMA_ARTIFACT_NAME, SCHEMA_TASK_NAME, getSchemaArtifactDef, getSchemaArtifactPath, } from './schema.task';
|
|
6
|
+
export type { SchemaEnv } from './schema-env';
|
|
7
|
+
export type { SchemaMain } from './schema.main.runtime';
|
|
8
|
+
export default SchemaAspect;
|
|
9
|
+
export { SchemaAspect };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const BasicButton: () => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
/**
|
|
3
|
+
* example of passing a JSX Element as a parameter
|
|
4
|
+
*/
|
|
5
|
+
export declare function Footer({ children }: {
|
|
6
|
+
children?: import("react/jsx-runtime").JSX.Element | undefined;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const ButtonWithCustomStyles: () => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const ButtonWithIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const ButtonAsALink: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
|
+
export type ButtonElementType = 'a' | 'button';
|
|
3
|
+
export type ButtonProps = {
|
|
4
|
+
/**
|
|
5
|
+
* children of the Button.
|
|
6
|
+
*/
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
/**
|
|
9
|
+
* link to target page. once href is used, Button is considered an A tag.
|
|
10
|
+
*/
|
|
11
|
+
href?: string;
|
|
12
|
+
/**
|
|
13
|
+
* class names to inject.
|
|
14
|
+
*/
|
|
15
|
+
className?: string;
|
|
16
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
17
|
+
export declare function Button(props: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare class Bar {
|
|
19
|
+
foo(): void;
|
|
20
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* General comment of the myFunc
|
|
3
|
+
* @deprecate example of deprecation tag
|
|
4
|
+
* @param a { number } this is A
|
|
5
|
+
* @param b this is B
|
|
6
|
+
* @returns { number } results of adding a to b
|
|
7
|
+
*/
|
|
8
|
+
export declare function myFunc(a?: number, b?: number): number;
|
|
9
|
+
export * from './button';
|
|
10
|
+
export declare function Hi(): void;
|
|
11
|
+
export declare const a = 4, b: 5;
|
|
12
|
+
export * as Compositions from './button.composition';
|
|
13
|
+
export declare const HiThere = "HiThere";
|
|
14
|
+
export declare const Function: () => void;
|
|
15
|
+
export declare const Array: string[];
|
|
16
|
+
declare class Foo {
|
|
17
|
+
}
|
|
18
|
+
declare class ClassSomething {
|
|
19
|
+
readonly da: 'dsa';
|
|
20
|
+
app: string;
|
|
21
|
+
constructor(da: 'dsa');
|
|
22
|
+
a(): Foo;
|
|
23
|
+
get getter(): string;
|
|
24
|
+
set setter(a: boolean);
|
|
25
|
+
}
|
|
26
|
+
export { ClassSomething };
|
|
27
|
+
export type IndexSig = {
|
|
28
|
+
[key: string]: boolean;
|
|
29
|
+
};
|
|
30
|
+
export interface Hello {
|
|
31
|
+
propertySig: () => void;
|
|
32
|
+
methodSig(): string;
|
|
33
|
+
}
|
|
34
|
+
declare const obj: {
|
|
35
|
+
a: number;
|
|
36
|
+
b: number;
|
|
37
|
+
};
|
|
38
|
+
export declare const a1: typeof obj;
|
|
39
|
+
export type TypeOperator = keyof typeof obj;
|
|
40
|
+
declare class Bar {
|
|
41
|
+
foo(): void;
|
|
42
|
+
}
|
|
43
|
+
export declare const getBar: (bar: Bar) => Bar;
|
|
44
|
+
export declare const tuple: ([a, b, c]: [string, Function, Record<string, any>]) => void;
|
|
45
|
+
export declare enum Food {
|
|
46
|
+
Falafel = 0,
|
|
47
|
+
Hummus = 1,
|
|
48
|
+
Tahini = 2
|
|
49
|
+
}
|
|
50
|
+
export declare function getPromise(): Promise<string>;
|
|
51
|
+
declare class T1 {
|
|
52
|
+
}
|
|
53
|
+
declare class T2 {
|
|
54
|
+
}
|
|
55
|
+
declare class T3<T, K> {
|
|
56
|
+
}
|
|
57
|
+
export type TypeRefWithArgs = T3<T1, T2>;
|
|
58
|
+
export type ParenthesizedType = (T1 | T2)[];
|
|
59
|
+
export declare function typePredicateFn(str: any): str is string;
|
|
60
|
+
export declare function typePredicateNoTypeFn(condition: any, msg?: string): asserts condition;
|
|
61
|
+
export declare function objectBindingElements({ prop }: {
|
|
62
|
+
prop?: number | undefined;
|
|
63
|
+
}): Promise<number>;
|
|
64
|
+
export declare function arrayBindingElements([prop]: [string]): Promise<string>;
|
|
65
|
+
interface config {
|
|
66
|
+
someField: {
|
|
67
|
+
a: string;
|
|
68
|
+
b: boolean;
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
export type IndexedAccessType = config['someField'];
|
|
72
|
+
declare const computedName = "str";
|
|
73
|
+
export interface ComputedNameWithType {
|
|
74
|
+
[computedName]: boolean;
|
|
75
|
+
}
|
|
76
|
+
export interface ComputedNameNoType {
|
|
77
|
+
[computedName]: any;
|
|
78
|
+
}
|
|
79
|
+
type World1 = 'world1-a' | 'world1-b';
|
|
80
|
+
type World2 = 'world2';
|
|
81
|
+
export type templateLiteralType = `hello ${World1} hi ${World2}`;
|
|
82
|
+
export interface CallSignatureWithTypeParams {
|
|
83
|
+
<T>(a: string): T;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Conditional Generic Type
|
|
87
|
+
*/
|
|
88
|
+
export type If<T, U, Y, N> = T extends U ? Y : N;
|
|
89
|
+
export declare function genericFunction<T>(a: T): <T_1>(a: T_1) => void;
|
|
90
|
+
export declare const gfnc2: <T>(a: T) => void;
|
|
91
|
+
export declare function LogMethod(message: string): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;
|
|
92
|
+
export declare function CustomClassDecorator(config: {
|
|
93
|
+
name: string;
|
|
94
|
+
description: string;
|
|
95
|
+
fn?: () => string;
|
|
96
|
+
class?: ClassSomething;
|
|
97
|
+
arr?: [
|
|
98
|
+
string,
|
|
99
|
+
number,
|
|
100
|
+
boolean,
|
|
101
|
+
boolean,
|
|
102
|
+
number | undefined,
|
|
103
|
+
(a: string) => void,
|
|
104
|
+
{
|
|
105
|
+
a: string;
|
|
106
|
+
b: number;
|
|
107
|
+
},
|
|
108
|
+
ClassSomething
|
|
109
|
+
];
|
|
110
|
+
}): (target: any) => void;
|
|
111
|
+
export declare class ExampleDecoratorOne {
|
|
112
|
+
exampleMethod(): void;
|
|
113
|
+
}
|
|
114
|
+
export declare function ValidateArgs(config: {
|
|
115
|
+
type: string;
|
|
116
|
+
required: boolean;
|
|
117
|
+
}): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;
|
|
118
|
+
export declare class ExampleDecoratorTwo {
|
|
119
|
+
exampleMethod(input: string): void;
|
|
120
|
+
}
|
package/dist/parser.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Export } from '@teambit/semantics.entities.semantic-schema';
|
|
2
|
+
export interface Parser {
|
|
3
|
+
/**
|
|
4
|
+
* regex to apply on which components compiler applies.
|
|
5
|
+
*/
|
|
6
|
+
extension: RegExp;
|
|
7
|
+
/**
|
|
8
|
+
* parse a module.
|
|
9
|
+
*/
|
|
10
|
+
parseModule(modulePath: string, content?: string): Export[];
|
|
11
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.semantics_schema@1.0.
|
|
2
|
-
import * as compositions_1 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.semantics_schema@1.0.
|
|
3
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.semantics_schema@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.semantics_schema@1.0.229/dist/schema.composition.js';
|
|
2
|
+
import * as compositions_1 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.semantics_schema@1.0.229/dist/mock/button/button.composition.js';
|
|
3
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.semantics_schema@1.0.229/dist/schema.docs.mdx';
|
|
4
4
|
|
|
5
5
|
export const compositions = [compositions_0, compositions_1];
|
|
6
6
|
export const overview = [overview_0];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { EnvHandler } from '@teambit/envs';
|
|
2
|
+
import { SchemaExtractor } from './schema-extractor';
|
|
3
|
+
/**
|
|
4
|
+
* define a schema extractor to extract type information
|
|
5
|
+
* and docs for your components.
|
|
6
|
+
*/
|
|
7
|
+
export interface SchemaEnv {
|
|
8
|
+
schemaExtractor(): EnvHandler<SchemaExtractor>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Component } from '@teambit/component';
|
|
2
|
+
import { APISchema } from '@teambit/semantics.entities.semantic-schema';
|
|
3
|
+
import { Formatter } from '@teambit/formatter';
|
|
4
|
+
export interface SchemaExtractor {
|
|
5
|
+
/**
|
|
6
|
+
* extract a semantic schema from a component.
|
|
7
|
+
*/
|
|
8
|
+
extract(component: Component, options?: SchemaExtractorOptions): Promise<APISchema>;
|
|
9
|
+
/**
|
|
10
|
+
* release resources if no schemas are needed for this process.
|
|
11
|
+
* for typescript, this will kill the tsserver process.
|
|
12
|
+
* for performance reasons, this is not automatically run after "extract". otherwise, running extract on multiple
|
|
13
|
+
* components will be very slow.
|
|
14
|
+
*/
|
|
15
|
+
dispose(): void;
|
|
16
|
+
}
|
|
17
|
+
export type SchemaExtractorOptions = {
|
|
18
|
+
formatter?: Formatter;
|
|
19
|
+
tsserverPath?: string;
|
|
20
|
+
contextPath?: string;
|
|
21
|
+
skipInternals?: boolean;
|
|
22
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Command, CommandOptions } from '@teambit/cli';
|
|
2
|
+
import { ComponentMain } from '@teambit/component';
|
|
3
|
+
import { Logger } from '@teambit/logger';
|
|
4
|
+
import type { SchemaMain } from './schema.main.runtime';
|
|
5
|
+
export declare class SchemaCommand implements Command {
|
|
6
|
+
private schema;
|
|
7
|
+
private component;
|
|
8
|
+
private logger;
|
|
9
|
+
name: string;
|
|
10
|
+
description: string;
|
|
11
|
+
extendedDescription: string;
|
|
12
|
+
group: string;
|
|
13
|
+
options: CommandOptions;
|
|
14
|
+
constructor(schema: SchemaMain, component: ComponentMain, logger: Logger);
|
|
15
|
+
report([pattern]: [string]): Promise<string>;
|
|
16
|
+
json([pattern]: [string]): Promise<Record<string, any>>;
|
|
17
|
+
private getSchemas;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Logo: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { CLIMain } from '@teambit/cli';
|
|
2
|
+
import { Component, ComponentMain } from '@teambit/component';
|
|
3
|
+
import { SlotRegistry } from '@teambit/harmony';
|
|
4
|
+
import { GraphqlMain } from '@teambit/graphql';
|
|
5
|
+
import { EnvsMain } from '@teambit/envs';
|
|
6
|
+
import { Logger, LoggerMain } from '@teambit/logger';
|
|
7
|
+
import { APISchema, Export, SchemaNodeConstructor } from '@teambit/semantics.entities.semantic-schema';
|
|
8
|
+
import { BuilderMain } from '@teambit/builder';
|
|
9
|
+
import { Workspace } from '@teambit/workspace';
|
|
10
|
+
import { ScopeMain } from '@teambit/scope';
|
|
11
|
+
import { SchemaNodeTransformer, SchemaTransformer } from '@teambit/typescript';
|
|
12
|
+
import { Parser } from './parser';
|
|
13
|
+
import { SchemaExtractor } from './schema-extractor';
|
|
14
|
+
export type ParserSlot = SlotRegistry<Parser>;
|
|
15
|
+
export type SchemaConfig = {
|
|
16
|
+
/**
|
|
17
|
+
* default parser
|
|
18
|
+
*/
|
|
19
|
+
defaultParser: string;
|
|
20
|
+
/**
|
|
21
|
+
* disable extracting schema
|
|
22
|
+
*/
|
|
23
|
+
disabled?: boolean;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* extension for extracting component schemas.
|
|
27
|
+
*/
|
|
28
|
+
export declare class SchemaMain {
|
|
29
|
+
/**
|
|
30
|
+
* parsers slot.
|
|
31
|
+
*/
|
|
32
|
+
private parserSlot;
|
|
33
|
+
private envs;
|
|
34
|
+
private config;
|
|
35
|
+
private builder;
|
|
36
|
+
private workspace;
|
|
37
|
+
private logger;
|
|
38
|
+
constructor(
|
|
39
|
+
/**
|
|
40
|
+
* parsers slot.
|
|
41
|
+
*/
|
|
42
|
+
parserSlot: ParserSlot, envs: EnvsMain, config: SchemaConfig, builder: BuilderMain, workspace: Workspace, logger: Logger);
|
|
43
|
+
/**
|
|
44
|
+
* get the default parser.
|
|
45
|
+
*/
|
|
46
|
+
getDefaultParser(): Parser;
|
|
47
|
+
registerSchemaClass(schema: SchemaNodeConstructor): void;
|
|
48
|
+
/**
|
|
49
|
+
* parse a module into a component schema.
|
|
50
|
+
*/
|
|
51
|
+
parseModule(path: string, content?: string): Export[];
|
|
52
|
+
getSchemaExtractor(component: Component, tsserverPath?: string, contextPath?: string): SchemaExtractor;
|
|
53
|
+
/**
|
|
54
|
+
* get a schema of a component.
|
|
55
|
+
* @param component target component.
|
|
56
|
+
* @param shouldDisposeResourcesOnceDone for long-running processes, such as bit-start/bit-watch, this is not
|
|
57
|
+
* relevant. for calling the API only to get a schema for one component, this is needed to ensure the ts-server is
|
|
58
|
+
* not kept alive. otherwise, the process will never end.
|
|
59
|
+
*
|
|
60
|
+
*/
|
|
61
|
+
getSchema(component: Component, shouldDisposeResourcesOnceDone?: boolean, alwaysRunExtractor?: boolean, tsserverPath?: string, contextPath?: string, skipInternals?: boolean, schemaTransformers?: SchemaTransformer[], apiTransformers?: SchemaNodeTransformer[]): Promise<APISchema>;
|
|
62
|
+
getSchemaFromObject(obj: Record<string, any>): APISchema;
|
|
63
|
+
/**
|
|
64
|
+
* register a new parser.
|
|
65
|
+
*/
|
|
66
|
+
registerParser(parser: Parser): SchemaMain;
|
|
67
|
+
calcSchemaData(): Promise<{
|
|
68
|
+
disabled?: boolean;
|
|
69
|
+
}>;
|
|
70
|
+
getSchemaData(component: Component): {
|
|
71
|
+
[key: string]: any;
|
|
72
|
+
} | undefined;
|
|
73
|
+
isSchemaTaskDisabled(component: Component): any;
|
|
74
|
+
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
75
|
+
static dependencies: import("@teambit/harmony").Aspect[];
|
|
76
|
+
static slots: ((registerFn: () => string) => SlotRegistry<Parser>)[];
|
|
77
|
+
static defaultConfig: {
|
|
78
|
+
defaultParser: string;
|
|
79
|
+
disabled: boolean;
|
|
80
|
+
};
|
|
81
|
+
static provider([envs, cli, component, graphql, loggerMain, builder, workspace, scope]: [
|
|
82
|
+
EnvsMain,
|
|
83
|
+
CLIMain,
|
|
84
|
+
ComponentMain,
|
|
85
|
+
GraphqlMain,
|
|
86
|
+
LoggerMain,
|
|
87
|
+
BuilderMain,
|
|
88
|
+
Workspace,
|
|
89
|
+
ScopeMain
|
|
90
|
+
], config: SchemaConfig, [parserSlot]: [ParserSlot]): Promise<SchemaMain>;
|
|
91
|
+
}
|
|
92
|
+
export default SchemaMain;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EnvService, ExecutionContext, Env, EnvContext, ServiceTransformationMap } from '@teambit/envs';
|
|
2
|
+
import { SchemaExtractor } from './schema-extractor';
|
|
3
|
+
type SchemaTransformationMap = ServiceTransformationMap & {
|
|
4
|
+
getSchemaExtractor: () => SchemaExtractor;
|
|
5
|
+
};
|
|
6
|
+
export declare class SchemaService implements EnvService<{}> {
|
|
7
|
+
name: string;
|
|
8
|
+
run(context: ExecutionContext): Promise<{
|
|
9
|
+
errors: never[];
|
|
10
|
+
context: ExecutionContext;
|
|
11
|
+
}>;
|
|
12
|
+
transform(env: Env, context: EnvContext): SchemaTransformationMap | undefined;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BuildContext, BuiltTaskResult, BuildTask, TaskLocation, ArtifactDefinition } from '@teambit/builder';
|
|
2
|
+
import { Logger } from '@teambit/logger';
|
|
3
|
+
import { SchemaMain } from './schema.main.runtime';
|
|
4
|
+
export declare const SCHEMA_TASK_NAME = "ExtractSchema";
|
|
5
|
+
export declare const SCHEMA_ARTIFACT_NAME = "schema";
|
|
6
|
+
/**
|
|
7
|
+
* extract and persist the component schema as a json file
|
|
8
|
+
*/
|
|
9
|
+
export declare class SchemaTask implements BuildTask {
|
|
10
|
+
readonly aspectId: string;
|
|
11
|
+
private schema;
|
|
12
|
+
private logger;
|
|
13
|
+
readonly name = "ExtractSchema";
|
|
14
|
+
readonly location: TaskLocation;
|
|
15
|
+
readonly description = "extract api schema for a set of components";
|
|
16
|
+
constructor(aspectId: string, schema: SchemaMain, logger: Logger);
|
|
17
|
+
execute(context: BuildContext): Promise<BuiltTaskResult>;
|
|
18
|
+
}
|
|
19
|
+
export declare function getSchemaArtifactPath(): string;
|
|
20
|
+
export declare function getSchemaArtifactDef(): ArtifactDefinition;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/schema",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.229",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/semantics/schema",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.semantics",
|
|
8
8
|
"name": "schema",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.229"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"p-map-series": "2.1.0",
|
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
"fs-extra": "10.0.0",
|
|
16
16
|
"@teambit/harmony": "0.4.6",
|
|
17
17
|
"@teambit/semantics.entities.semantic-schema": "0.0.68",
|
|
18
|
-
"@teambit/envs": "1.0.
|
|
19
|
-
"@teambit/component": "1.0.
|
|
20
|
-
"@teambit/formatter": "1.0.
|
|
21
|
-
"@teambit/cli": "0.0.
|
|
22
|
-
"@teambit/logger": "0.0.
|
|
23
|
-
"@teambit/graphql": "1.0.
|
|
24
|
-
"@teambit/builder": "1.0.
|
|
18
|
+
"@teambit/envs": "1.0.229",
|
|
19
|
+
"@teambit/component": "1.0.229",
|
|
20
|
+
"@teambit/formatter": "1.0.229",
|
|
21
|
+
"@teambit/cli": "0.0.862",
|
|
22
|
+
"@teambit/logger": "0.0.955",
|
|
23
|
+
"@teambit/graphql": "1.0.229",
|
|
24
|
+
"@teambit/builder": "1.0.229",
|
|
25
25
|
"@teambit/defender.prettier.config-mutator": "0.0.100",
|
|
26
|
-
"@teambit/scope": "1.0.
|
|
27
|
-
"@teambit/typescript": "1.0.
|
|
28
|
-
"@teambit/workspace": "1.0.
|
|
26
|
+
"@teambit/scope": "1.0.229",
|
|
27
|
+
"@teambit/typescript": "1.0.229",
|
|
28
|
+
"@teambit/workspace": "1.0.229"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/chai": "4.2.15",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"chai": "4.3.0",
|
|
35
35
|
"@types/mocha": "9.1.0",
|
|
36
36
|
"@teambit/component-id": "1.2.0",
|
|
37
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
37
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33",
|
|
38
38
|
"@teambit/harmony.testing.load-aspect": "0.0.190",
|
|
39
|
-
"@teambit/tracker": "1.0.
|
|
39
|
+
"@teambit/tracker": "1.0.229",
|
|
40
40
|
"@teambit/workspace.testing.mock-workspace": "0.0.27"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
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,40 +35,5 @@
|
|
|
36
35
|
"include": [
|
|
37
36
|
"**/*",
|
|
38
37
|
"**/*.json"
|
|
39
|
-
],
|
|
40
|
-
"references": [
|
|
41
|
-
{
|
|
42
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.envs_envs@1.0.228"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component@1.0.228"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.defender_formatter@1.0.228"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.861"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_logger@0.0.954"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_graphql@1.0.228"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.pipelines_builder@1.0.228"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_scope@1.0.228"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.typescript_typescript@1.0.228"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.workspace_workspace@1.0.228"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_tracker@1.0.228"
|
|
73
|
-
}
|
|
74
38
|
]
|
|
75
39
|
}
|