@teambit/mdx 1.0.220 → 1.0.222
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/dist/{preview-1712200750105.js → preview-1712373348227.js} +2 -2
- package/index.ts +8 -0
- package/mdx.aspect.ts +7 -0
- package/mdx.compiler.ts +137 -0
- package/mdx.detector.spec.ts +26 -0
- package/mdx.detector.ts +21 -0
- package/mdx.doc-reader.ts +18 -0
- package/mdx.env.ts +7 -0
- package/mdx.main.runtime.ts +142 -0
- package/mdx.templates.ts +13 -0
- package/package.json +17 -17
- package/artifacts/env-template/public/310.03089d930b023f3a6352.js +0 -694
- package/artifacts/env-template/public/359.0a1f1ff12be5124a0f7c.js +0 -255
- package/artifacts/env-template/public/700.f5fce5db582bd65bc0df.js +0 -216
- package/artifacts/env-template/public/851.d2664a57f5d46b636e5f.js +0 -41
- package/artifacts/env-template/public/assets-manifest.json +0 -58
- package/artifacts/env-template/public/compositions.5b4b3c69de46765bfaa0.js +0 -17
- package/artifacts/env-template/public/compositions.html +0 -2
- package/artifacts/env-template/public/overview.24a05c743f5a8df0616a.js +0 -5
- package/artifacts/env-template/public/overview.html +0 -2
- package/artifacts/env-template/public/peers.be63200d8118cd4aca07.js +0 -1
- package/artifacts/env-template/public/preview-root.93da260e5cd4522c90ed.js +0 -1
- package/artifacts/env-template/public/static/css/310.f86b4fe8.css +0 -1
- package/artifacts/env-template/public/static/css/compositions.2a7f63f9.css +0 -1
- package/artifacts/env-template/public/static/css/preview-root.5fd7d59d.css +0 -1
- /package/{compositions-1712200750105.js → compositions-1712373348227.js} +0 -0
- /package/{overview-1712200750105.js → overview-1712373348227.js} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.mdx_mdx@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.mdx_mdx@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.mdx_mdx@1.0.222/dist/mdx.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.mdx_mdx@1.0.222/dist/mdx.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
package/index.ts
ADDED
package/mdx.aspect.ts
ADDED
package/mdx.compiler.ts
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { join } from 'path';
|
|
2
|
+
import { outputFileSync } from 'fs-extra';
|
|
3
|
+
import { Compiler, TranspileFileOutput, TranspileFileParams } from '@teambit/compiler';
|
|
4
|
+
import { BuiltTaskResult, BuildContext } from '@teambit/builder';
|
|
5
|
+
import { compileSync as mdxCompileSync } from '@teambit/mdx.compilers.mdx-transpiler';
|
|
6
|
+
import minimatch from 'minimatch';
|
|
7
|
+
import { transpileFileContent as babelTranspileFileContent } from '@teambit/compilation.modules.babel-compiler';
|
|
8
|
+
import type { TransformOptions } from '@babel/core';
|
|
9
|
+
|
|
10
|
+
export type MDXCompilerOpts = {
|
|
11
|
+
ignoredExtensions?: string[];
|
|
12
|
+
ignoredPatterns?: string[];
|
|
13
|
+
babelTransformOptions?: TransformOptions;
|
|
14
|
+
};
|
|
15
|
+
export class MDXCompiler implements Compiler {
|
|
16
|
+
displayName = 'MDX';
|
|
17
|
+
|
|
18
|
+
shouldCopyNonSupportedFiles = true;
|
|
19
|
+
|
|
20
|
+
distDir = 'dist';
|
|
21
|
+
|
|
22
|
+
constructor(readonly id: string, readonly config: MDXCompilerOpts) {}
|
|
23
|
+
|
|
24
|
+
displayConfig() {
|
|
25
|
+
return JSON.stringify(this.config, null, 2);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
getDistDir() {
|
|
29
|
+
return this.distDir;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
transpileFile(fileContent: string, options: TranspileFileParams): TranspileFileOutput {
|
|
33
|
+
const afterMdxCompile = mdxCompileSync(fileContent, {
|
|
34
|
+
filepath: options.filePath,
|
|
35
|
+
// this compiler is not indented to compile according to the bit flavour.
|
|
36
|
+
bitFlavour: false,
|
|
37
|
+
});
|
|
38
|
+
const filePathAfterMdxCompile = this.replaceFileExtToJs(options.filePath);
|
|
39
|
+
const afterBabelCompile = babelTranspileFileContent(
|
|
40
|
+
afterMdxCompile.contents,
|
|
41
|
+
{
|
|
42
|
+
rootDir: options.componentDir,
|
|
43
|
+
filePath: filePathAfterMdxCompile,
|
|
44
|
+
},
|
|
45
|
+
this.config.babelTransformOptions || {}
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
return afterBabelCompile;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* compile components inside isolated capsules. this being used during tag for the release.
|
|
53
|
+
* meaning, the final package of the component has the dists generated by this method.
|
|
54
|
+
*/
|
|
55
|
+
async build(context: BuildContext): Promise<BuiltTaskResult> {
|
|
56
|
+
const capsules = context.capsuleNetwork.seedersCapsules;
|
|
57
|
+
const componentsResults = capsules.map((capsule) => {
|
|
58
|
+
const srcFiles = capsule.component.filesystem.files.filter((file) => {
|
|
59
|
+
return this.isFileSupported(file.relative);
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
const errors = srcFiles.map((srcFile) => {
|
|
63
|
+
try {
|
|
64
|
+
const transpiled = this.transpileFile(srcFile.contents.toString('utf-8'), {
|
|
65
|
+
filePath: this.replaceFileExtToJs(srcFile.relative),
|
|
66
|
+
componentDir: capsule.path,
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
if (!transpiled) {
|
|
70
|
+
return undefined;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
outputFileSync(
|
|
74
|
+
join(capsule.path, this.getDistPathBySrcPath(transpiled[0].outputPath)),
|
|
75
|
+
transpiled[0].outputText
|
|
76
|
+
);
|
|
77
|
+
if (transpiled.length > 1) {
|
|
78
|
+
outputFileSync(join(capsule.path, this.distDir, transpiled[1].outputPath), transpiled[1].outputText);
|
|
79
|
+
}
|
|
80
|
+
return undefined;
|
|
81
|
+
} catch (err: any) {
|
|
82
|
+
return err;
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
return {
|
|
87
|
+
errors: errors.filter((err) => !!err),
|
|
88
|
+
component: capsule.component,
|
|
89
|
+
};
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
return {
|
|
93
|
+
componentsResults,
|
|
94
|
+
artifacts: [
|
|
95
|
+
{
|
|
96
|
+
name: 'dist',
|
|
97
|
+
globPatterns: [`${this.distDir}/**`],
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* given a source file, return its parallel in the dists. e.g. "index.ts" => "dist/index.js"
|
|
105
|
+
* both, the return path and the given path are relative paths.
|
|
106
|
+
*/
|
|
107
|
+
getDistPathBySrcPath(srcPath: string): string {
|
|
108
|
+
const fileWithNewExt = this.replaceFileExtToJs(srcPath);
|
|
109
|
+
return join(this.distDir, fileWithNewExt);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
private replaceFileExtToJs(srcPath: string): string {
|
|
113
|
+
let fileWithNewExt = srcPath;
|
|
114
|
+
if (this.isFileSupported(srcPath)) {
|
|
115
|
+
fileWithNewExt = srcPath.replace('.mdx', '.mdx.js');
|
|
116
|
+
}
|
|
117
|
+
return fileWithNewExt;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* only supported files matching get compiled. others, are copied to the dist dir.
|
|
122
|
+
*/
|
|
123
|
+
isFileSupported(filePath: string): boolean {
|
|
124
|
+
const ignoredExtensions = this.config.ignoredExtensions ?? [];
|
|
125
|
+
const ignoredExt = ignoredExtensions.find((ext) => filePath.endsWith(ext));
|
|
126
|
+
const ignoredPatterns = this.config.ignoredPatterns ?? [];
|
|
127
|
+
const ignoredPattern = ignoredPatterns.find((pattern) => minimatch(filePath, pattern));
|
|
128
|
+
return !ignoredExt && !ignoredPattern && (filePath.endsWith('.mdx') || filePath.endsWith('.md'));
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* returns the version of the current compiler instance (e.g. '4.0.1').
|
|
133
|
+
*/
|
|
134
|
+
version(): string {
|
|
135
|
+
return '';
|
|
136
|
+
}
|
|
137
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { expect } from 'chai';
|
|
2
|
+
import { MDXDependencyDetector } from './mdx.detector';
|
|
3
|
+
|
|
4
|
+
describe('MDXDependencyDetector', () => {
|
|
5
|
+
function expectDependencies(src: string, expectedDeps: string[]) {
|
|
6
|
+
expect(new MDXDependencyDetector(['mdx']).detect(src)).to.deep.equal(expectedDeps);
|
|
7
|
+
}
|
|
8
|
+
describe('detect', () => {
|
|
9
|
+
it('should correctly detect default import', () => {
|
|
10
|
+
const src = 'import x from "y";';
|
|
11
|
+
expectDependencies(src, ['y']);
|
|
12
|
+
});
|
|
13
|
+
it('should correctly detect star import', () => {
|
|
14
|
+
const src = 'import * as y from "y";';
|
|
15
|
+
expectDependencies(src, ['y']);
|
|
16
|
+
});
|
|
17
|
+
it('should correctly detect named import', () => {
|
|
18
|
+
const src = 'import { x } from "y";';
|
|
19
|
+
expectDependencies(src, ['y']);
|
|
20
|
+
});
|
|
21
|
+
it('should correctly detect import with no identifier', () => {
|
|
22
|
+
const src = 'import "y";';
|
|
23
|
+
expectDependencies(src, ['y']);
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
});
|
package/mdx.detector.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { DependencyDetector, FileContext } from '@teambit/dependency-resolver';
|
|
2
|
+
import { compileSync } from '@teambit/mdx.compilers.mdx-transpiler';
|
|
3
|
+
|
|
4
|
+
export class MDXDependencyDetector implements DependencyDetector {
|
|
5
|
+
constructor(private supportedExtensions: string[]) {}
|
|
6
|
+
|
|
7
|
+
isSupported(context: FileContext): boolean {
|
|
8
|
+
return this.supportedExtensions.includes(context.ext);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
detect(source: string): string[] {
|
|
12
|
+
const output = compileSync(source);
|
|
13
|
+
const imports = output.getImportSpecifiers();
|
|
14
|
+
if (!imports) return [];
|
|
15
|
+
const files: string[] = imports.map((importSpec) => {
|
|
16
|
+
return importSpec.fromModule;
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
return files;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DocReader, Doc } from '@teambit/docs';
|
|
2
|
+
import { compile } from '@teambit/mdx.compilers.mdx-transpiler';
|
|
3
|
+
|
|
4
|
+
export class MDXDocReader implements DocReader {
|
|
5
|
+
constructor(private extensions: string[]) {}
|
|
6
|
+
|
|
7
|
+
async read(path: string, contents: Buffer) {
|
|
8
|
+
const output = await compile(contents.toString('utf-8'), { filepath: path });
|
|
9
|
+
const metadata = output.getMetadata();
|
|
10
|
+
|
|
11
|
+
const doc = Doc.from(path, metadata);
|
|
12
|
+
return doc;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
isFormatSupported(format: string) {
|
|
16
|
+
return this.extensions.includes(format);
|
|
17
|
+
}
|
|
18
|
+
}
|
package/mdx.env.ts
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { Harmony } from '@teambit/harmony';
|
|
2
|
+
import { BabelCompiler } from '@teambit/compilation.babel-compiler';
|
|
3
|
+
import { TypescriptConfigMutator } from '@teambit/typescript.modules.ts-config-mutator';
|
|
4
|
+
import { TsConfigTransformer } from '@teambit/typescript';
|
|
5
|
+
import { MainRuntime } from '@teambit/cli';
|
|
6
|
+
import { CompilerAspect, CompilerMain } from '@teambit/compiler';
|
|
7
|
+
import { DependencyResolverAspect, DependencyResolverMain } from '@teambit/dependency-resolver';
|
|
8
|
+
import { DocsAspect, DocsMain } from '@teambit/docs';
|
|
9
|
+
import { ComponentID } from '@teambit/component-id';
|
|
10
|
+
import { LoggerAspect, LoggerMain } from '@teambit/logger';
|
|
11
|
+
import { WorkerAspect, WorkerMain } from '@teambit/worker';
|
|
12
|
+
import { EnvContext, EnvsAspect, EnvsMain } from '@teambit/envs';
|
|
13
|
+
import { MultiCompilerAspect, MultiCompilerMain } from '@teambit/multi-compiler';
|
|
14
|
+
import { ReactAspect, ReactEnv, ReactMain } from '@teambit/react';
|
|
15
|
+
import { GeneratorAspect, GeneratorMain } from '@teambit/generator';
|
|
16
|
+
import { MDXAspect } from './mdx.aspect';
|
|
17
|
+
import { MDXCompiler, MDXCompilerOpts } from './mdx.compiler';
|
|
18
|
+
import { MDXDependencyDetector } from './mdx.detector';
|
|
19
|
+
import { MDXDocReader } from './mdx.doc-reader';
|
|
20
|
+
import { getTemplates } from './mdx.templates';
|
|
21
|
+
import { babelConfig } from './babel/babel.config';
|
|
22
|
+
|
|
23
|
+
export type MDXConfig = {
|
|
24
|
+
/**
|
|
25
|
+
* list of file extensions to consider as MDX files.
|
|
26
|
+
*/
|
|
27
|
+
extensions: string[];
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export class MDXMain {
|
|
31
|
+
icon() {
|
|
32
|
+
return 'https://static.bit.dev/extensions-icons/mdx-icon-small.svg';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* create an instance of the MDX compiler.
|
|
37
|
+
*/
|
|
38
|
+
createCompiler(opts: MDXCompilerOpts = {}) {
|
|
39
|
+
const mdxCompiler = new MDXCompiler(MDXAspect.id, opts);
|
|
40
|
+
return mdxCompiler;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
_mdxEnv: ReactEnv;
|
|
44
|
+
get mdxEnv() {
|
|
45
|
+
return this._mdxEnv;
|
|
46
|
+
}
|
|
47
|
+
private set mdxEnv(value: ReactEnv) {
|
|
48
|
+
this._mdxEnv = value;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
static runtime = MainRuntime;
|
|
52
|
+
|
|
53
|
+
static dependencies = [
|
|
54
|
+
DocsAspect,
|
|
55
|
+
DependencyResolverAspect,
|
|
56
|
+
ReactAspect,
|
|
57
|
+
EnvsAspect,
|
|
58
|
+
MultiCompilerAspect,
|
|
59
|
+
CompilerAspect,
|
|
60
|
+
GeneratorAspect,
|
|
61
|
+
LoggerAspect,
|
|
62
|
+
WorkerAspect,
|
|
63
|
+
];
|
|
64
|
+
|
|
65
|
+
static defaultConfig = {
|
|
66
|
+
extensions: ['.md', '.mdx'],
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
static async provider(
|
|
70
|
+
[docs, depResolver, react, envs, multiCompiler, compiler, generator, loggerAspect, workerMain]: [
|
|
71
|
+
DocsMain,
|
|
72
|
+
DependencyResolverMain,
|
|
73
|
+
ReactMain,
|
|
74
|
+
EnvsMain,
|
|
75
|
+
MultiCompilerMain,
|
|
76
|
+
CompilerMain,
|
|
77
|
+
GeneratorMain,
|
|
78
|
+
LoggerMain,
|
|
79
|
+
WorkerMain
|
|
80
|
+
],
|
|
81
|
+
config: MDXConfig,
|
|
82
|
+
slots,
|
|
83
|
+
harmony: Harmony
|
|
84
|
+
) {
|
|
85
|
+
const mdx = new MDXMain();
|
|
86
|
+
const tsTransformer: TsConfigTransformer = (tsconfig: TypescriptConfigMutator) => {
|
|
87
|
+
// set the shouldCopyNonSupportedFiles to false since we don't want ts to copy the .mdx file to the dist folder (it will conflict with the .mdx.js file created by the mdx compiler)
|
|
88
|
+
tsconfig.setCompileJs(false).setCompileJsx(false).setShouldCopyNonSupportedFiles(false);
|
|
89
|
+
return tsconfig;
|
|
90
|
+
};
|
|
91
|
+
const tsCompiler = react.env.getCompiler([tsTransformer]);
|
|
92
|
+
const logger = loggerAspect.createLogger(MDXAspect.id);
|
|
93
|
+
|
|
94
|
+
const babelCompiler = BabelCompiler.create(
|
|
95
|
+
{
|
|
96
|
+
babelTransformOptions: babelConfig,
|
|
97
|
+
// set the shouldCopyNonSupportedFiles to false since we don't want babel to copy the .mdx file to the dist
|
|
98
|
+
// folder (it will conflict with the .mdx.js file created by the mdx compiler)
|
|
99
|
+
shouldCopyNonSupportedFiles: false,
|
|
100
|
+
},
|
|
101
|
+
{ logger }
|
|
102
|
+
);
|
|
103
|
+
|
|
104
|
+
const mdxCompiler = multiCompiler.createCompiler(
|
|
105
|
+
[
|
|
106
|
+
babelCompiler,
|
|
107
|
+
mdx.createCompiler({ ignoredPatterns: docs.getPatterns(), babelTransformOptions: babelConfig }),
|
|
108
|
+
tsCompiler,
|
|
109
|
+
],
|
|
110
|
+
{}
|
|
111
|
+
);
|
|
112
|
+
const mdxEnv = envs.compose(react.reactEnv, [
|
|
113
|
+
react.overrideCompiler(mdxCompiler),
|
|
114
|
+
react.overrideDependencies({
|
|
115
|
+
dependencies: {
|
|
116
|
+
'@teambit/mdx.ui.mdx-scope-context': '1.0.0',
|
|
117
|
+
'@mdx-js/react': '1.6.22',
|
|
118
|
+
},
|
|
119
|
+
}),
|
|
120
|
+
react.overrideCompilerTasks([compiler.createTask('MDXCompiler', mdxCompiler)]),
|
|
121
|
+
envs.override({
|
|
122
|
+
__getDescriptor: async () => {
|
|
123
|
+
return {
|
|
124
|
+
type: 'mdx',
|
|
125
|
+
};
|
|
126
|
+
},
|
|
127
|
+
}),
|
|
128
|
+
]);
|
|
129
|
+
envs.registerEnv(mdxEnv);
|
|
130
|
+
depResolver.registerDetector(new MDXDependencyDetector(config.extensions));
|
|
131
|
+
docs.registerDocReader(new MDXDocReader(config.extensions));
|
|
132
|
+
if (generator) {
|
|
133
|
+
const envContext = new EnvContext(ComponentID.fromString(ReactAspect.id), loggerAspect, workerMain, harmony);
|
|
134
|
+
generator.registerComponentTemplate(getTemplates(envContext));
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
mdx.mdxEnv = mdxEnv as ReactEnv;
|
|
138
|
+
return mdx;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
MDXAspect.addRuntime(MDXMain);
|
package/mdx.templates.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MdxComponentTemplate, MdxEnvTemplate } from '@teambit/mdx.generator.mdx-templates';
|
|
2
|
+
import { EnvContext } from '@teambit/envs';
|
|
3
|
+
import { ComponentTemplate, TemplateList } from '@teambit/generator';
|
|
4
|
+
|
|
5
|
+
const templateListHandler = TemplateList.from([
|
|
6
|
+
MdxComponentTemplate.from({ env: 'teambit.mdx/mdx-env' }),
|
|
7
|
+
MdxEnvTemplate.from({}),
|
|
8
|
+
]);
|
|
9
|
+
|
|
10
|
+
export function getTemplates(envContext: EnvContext): ComponentTemplate[] {
|
|
11
|
+
const templateList = templateListHandler(envContext);
|
|
12
|
+
return templateList.compute();
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/mdx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.222",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/mdx/mdx",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.mdx",
|
|
8
8
|
"name": "mdx",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.222"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/core": "7.19.6",
|
|
@@ -27,23 +27,23 @@
|
|
|
27
27
|
"@teambit/component-id": "1.2.0",
|
|
28
28
|
"@teambit/mdx.generator.mdx-templates": "1.0.10",
|
|
29
29
|
"@teambit/design.ui.empty-box": "0.0.363",
|
|
30
|
-
"@teambit/builder": "1.0.
|
|
30
|
+
"@teambit/builder": "1.0.222",
|
|
31
31
|
"@teambit/compilation.modules.babel-compiler": "0.0.139",
|
|
32
|
-
"@teambit/compiler": "1.0.
|
|
33
|
-
"@teambit/dependency-resolver": "1.0.
|
|
34
|
-
"@teambit/docs": "1.0.
|
|
35
|
-
"@teambit/envs": "1.0.
|
|
36
|
-
"@teambit/cli": "0.0.
|
|
37
|
-
"@teambit/generator": "1.0.
|
|
38
|
-
"@teambit/logger": "0.0.
|
|
39
|
-
"@teambit/multi-compiler": "1.0.
|
|
40
|
-
"@teambit/react": "1.0.
|
|
32
|
+
"@teambit/compiler": "1.0.222",
|
|
33
|
+
"@teambit/dependency-resolver": "1.0.222",
|
|
34
|
+
"@teambit/docs": "1.0.222",
|
|
35
|
+
"@teambit/envs": "1.0.222",
|
|
36
|
+
"@teambit/cli": "0.0.859",
|
|
37
|
+
"@teambit/generator": "1.0.223",
|
|
38
|
+
"@teambit/logger": "0.0.952",
|
|
39
|
+
"@teambit/multi-compiler": "1.0.222",
|
|
40
|
+
"@teambit/react": "1.0.222",
|
|
41
41
|
"@teambit/typescript.modules.ts-config-mutator": "0.0.83",
|
|
42
|
-
"@teambit/typescript": "1.0.
|
|
43
|
-
"@teambit/worker": "0.0.
|
|
44
|
-
"@teambit/compositions": "1.0.
|
|
45
|
-
"@teambit/tester": "1.0.
|
|
46
|
-
"@teambit/ui": "1.0.
|
|
42
|
+
"@teambit/typescript": "1.0.222",
|
|
43
|
+
"@teambit/worker": "0.0.1163",
|
|
44
|
+
"@teambit/compositions": "1.0.222",
|
|
45
|
+
"@teambit/tester": "1.0.222",
|
|
46
|
+
"@teambit/ui": "1.0.222"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/fs-extra": "9.0.7",
|