@teambit/component-writer 0.0.13 → 0.0.15

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.
@@ -16,6 +16,7 @@ export interface ManyComponentsWriterParams {
16
16
  }
17
17
  export declare type ComponentWriterResults = {
18
18
  installationError?: Error;
19
+ compilationError?: Error;
19
20
  };
20
21
  export declare class ComponentWriterMain {
21
22
  private installer;
@@ -27,7 +28,7 @@ export declare class ComponentWriterMain {
27
28
  get consumer(): Consumer;
28
29
  writeMany(opts: ManyComponentsWriterParams): Promise<ComponentWriterResults>;
29
30
  private installPackagesGracefully;
30
- private compile;
31
+ private compileGracefully;
31
32
  private persistComponentsData;
32
33
  private populateComponentsFilesToWrite;
33
34
  /**
@@ -49,13 +49,6 @@ function _workspace() {
49
49
  };
50
50
  return data;
51
51
  }
52
- function _bitError() {
53
- const data = require("@teambit/bit-error");
54
- _bitError = function () {
55
- return data;
56
- };
57
- return data;
58
- }
59
52
  function _fsExtra() {
60
53
  const data = _interopRequireDefault(require("fs-extra"));
61
54
  _fsExtra = function () {
@@ -147,15 +140,17 @@ class ComponentWriterMain {
147
140
  this.moveComponentsIfNeeded(opts);
148
141
  await this.persistComponentsData(opts);
149
142
  let installationError;
143
+ let compilationError;
150
144
  if (!opts.skipDependencyInstallation) {
151
145
  installationError = await this.installPackagesGracefully();
152
- await this.compile(); // no point to compile if the installation is not running. the environment is not ready.
146
+ // no point to compile if the installation is not running. the environment is not ready.
147
+ compilationError = await this.compileGracefully();
153
148
  }
154
-
155
149
  await this.consumer.writeBitMap();
156
150
  this.logger.debug('writeMany, completed!');
157
151
  return {
158
- installationError
152
+ installationError,
153
+ compilationError
159
154
  };
160
155
  }
161
156
  async installPackagesGracefully() {
@@ -175,14 +170,14 @@ class ComponentWriterMain {
175
170
  return err;
176
171
  }
177
172
  }
178
- async compile() {
173
+ async compileGracefully() {
179
174
  try {
180
175
  await this.compiler.compileOnWorkspace();
176
+ return undefined;
181
177
  } catch (err) {
182
- this.logger.error('compile, compiler found an error', err);
183
- throw new (_bitError().BitError)(`failed compiling the components. please run "bit compile" once the issue is fixed
184
- error from the compiler: ${err.message}.
185
- please use the '--log=error' flag for the full error.`);
178
+ this.logger.consoleFailure(`compilation failed with the following error: ${err.message}`);
179
+ this.logger.error('compileGracefully, compiler found an error', err);
180
+ return err;
186
181
  }
187
182
  }
188
183
  async persistComponentsData(opts) {
@@ -1 +1 @@
1
- {"version":3,"names":["ComponentWriterMain","constructor","installer","compiler","workspace","logger","mover","consumer","writeMany","opts","debug","populateComponentsFilesToWrite","moveComponentsIfNeeded","persistComponentsData","installationError","skipDependencyInstallation","installPackagesGracefully","compile","writeBitMap","installOpts","dedupe","updateExisting","import","install","undefined","err","consoleFailure","message","error","compileOnWorkspace","BitError","dataToPersist","DataToPersist","componentsWithDependencies","forEach","componentWithDeps","allComponents","component","allDependencies","merge","componentsConfig","config","hasChanged","jsonFiles","toVinyl","getPath","addManyFiles","addBasePath","persistAllToFS","writeComponentsParams","map","getWriteParamsOfOneComponent","componentWriterInstances","writeParams","ComponentWriter","fixDirsIfNested","componentWriter","existingComponentMap","addComponentToBitMap","writeToPath","resetConfig","mapSeries","allDirs","c","parentsOfOthersComps","filter","find","d","startsWith","length","parentsOfOthersCompsDirs","incrementPath","p","number","existingRootDirs","Object","keys","bitMap","getAllTrackDirs","allPaths","incrementRecursively","num","newPath","includes","componentRootDir","pathNormalizeToLinux","getPathRelativeToConsumer","path","resolve","composeRelativeComponentPath","id","getParams","componentMap","getComponentIfExist","ignoreVersion","throwErrorWhenDirectoryNotEmpty","toAbsolutePath","writeConfig","rootDir","GeneralError","relativeWrittenPath","writtenPath","absoluteWrittenPath","absoluteWriteToPath","moveExistingComponent","componentDir","fs","pathExistsSync","isDir","isDirEmptySync","throwForExistingDir","provider","loggerMain","createLogger","ComponentWriterAspect","InstallAspect","CompilerAspect","LoggerAspect","WorkspaceAspect","MoverAspect","MainRuntime","addRuntime"],"sources":["component-writer.main.runtime.ts"],"sourcesContent":["import { MainRuntime } from '@teambit/cli';\nimport { CompilerAspect, CompilerMain } from '@teambit/compiler';\nimport InstallAspect, { InstallMain } from '@teambit/install';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport WorkspaceAspect, { Workspace } from '@teambit/workspace';\nimport { BitError } from '@teambit/bit-error';\nimport fs from 'fs-extra';\nimport mapSeries from 'p-map-series';\nimport * as path from 'path';\nimport MoverAspect, { MoverMain } from '@teambit/mover';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport { ComponentWithDependencies } from '@teambit/legacy/dist/scope';\nimport { isDir, isDirEmptySync } from '@teambit/legacy/dist/utils';\nimport { PathLinuxRelative, pathNormalizeToLinux, PathOsBasedAbsolute } from '@teambit/legacy/dist/utils/path';\nimport ComponentMap from '@teambit/legacy/dist/consumer/bit-map/component-map';\nimport DataToPersist from '@teambit/legacy/dist/consumer/component/sources/data-to-persist';\nimport Consumer from '@teambit/legacy/dist/consumer/consumer';\nimport ComponentWriter, { ComponentWriterProps } from './component-writer';\nimport { ComponentWriterAspect } from './component-writer.aspect';\n\nexport interface ManyComponentsWriterParams {\n componentsWithDependencies: ComponentWithDependencies[];\n writeToPath?: string;\n throwForExistingDir?: boolean;\n writeConfig?: boolean;\n skipDependencyInstallation?: boolean;\n verbose?: boolean;\n resetConfig?: boolean;\n}\n\nexport type ComponentWriterResults = { installationError?: Error };\n\nexport class ComponentWriterMain {\n constructor(\n private installer: InstallMain,\n private compiler: CompilerMain,\n private workspace: Workspace,\n private logger: Logger,\n private mover: MoverMain\n ) {}\n\n get consumer(): Consumer {\n return this.workspace.consumer;\n }\n\n async writeMany(opts: ManyComponentsWriterParams): Promise<ComponentWriterResults> {\n this.logger.debug('writeMany, started');\n await this.populateComponentsFilesToWrite(opts);\n this.moveComponentsIfNeeded(opts);\n await this.persistComponentsData(opts);\n let installationError: Error | undefined;\n if (!opts.skipDependencyInstallation) {\n installationError = await this.installPackagesGracefully();\n await this.compile(); // no point to compile if the installation is not running. the environment is not ready.\n }\n await this.consumer.writeBitMap();\n this.logger.debug('writeMany, completed!');\n return { installationError };\n }\n\n private async installPackagesGracefully() {\n this.logger.debug('installPackagesGracefully, start installing packages');\n try {\n const installOpts = {\n dedupe: true,\n updateExisting: false,\n import: false,\n };\n await this.installer.install(undefined, installOpts);\n this.logger.debug('installPackagesGracefully, completed installing packages successfully');\n return undefined;\n } catch (err: any) {\n this.logger.consoleFailure(`installation failed with the following error: ${err.message}`);\n this.logger.error('installPackagesGracefully, package-installer found an error', err);\n return err;\n }\n }\n private async compile() {\n try {\n await this.compiler.compileOnWorkspace();\n } catch (err: any) {\n this.logger.error('compile, compiler found an error', err);\n throw new BitError(`failed compiling the components. please run \"bit compile\" once the issue is fixed\nerror from the compiler: ${err.message}.\nplease use the '--log=error' flag for the full error.`);\n }\n }\n private async persistComponentsData(opts: ManyComponentsWriterParams) {\n const dataToPersist = new DataToPersist();\n opts.componentsWithDependencies.forEach((componentWithDeps) => {\n const allComponents = [componentWithDeps.component, ...componentWithDeps.allDependencies];\n allComponents.forEach((component) => dataToPersist.merge(component.dataToPersist));\n });\n const componentsConfig = this.consumer?.config?.componentsConfig;\n if (componentsConfig?.hasChanged) {\n const jsonFiles = await this.consumer?.config.toVinyl(this.consumer.getPath());\n if (jsonFiles) {\n dataToPersist.addManyFiles(jsonFiles);\n }\n }\n dataToPersist.addBasePath(this.consumer.getPath());\n await dataToPersist.persistAllToFS();\n }\n private async populateComponentsFilesToWrite(opts: ManyComponentsWriterParams) {\n const writeComponentsParams = opts.componentsWithDependencies.map((componentWithDeps: ComponentWithDependencies) =>\n this.getWriteParamsOfOneComponent(componentWithDeps, opts)\n );\n const componentWriterInstances = writeComponentsParams.map((writeParams) => new ComponentWriter(writeParams));\n this.fixDirsIfNested(componentWriterInstances);\n // add componentMap entries into .bitmap before starting the process because steps like writing package-json\n // rely on .bitmap to determine whether a dependency exists and what's its origin\n componentWriterInstances.forEach((componentWriter: ComponentWriter) => {\n componentWriter.existingComponentMap =\n componentWriter.existingComponentMap || componentWriter.addComponentToBitMap(componentWriter.writeToPath);\n });\n if (opts.resetConfig) {\n componentWriterInstances.forEach((componentWriter: ComponentWriter) => {\n delete componentWriter.existingComponentMap?.config;\n });\n }\n await mapSeries(componentWriterInstances, (componentWriter: ComponentWriter) =>\n componentWriter.populateComponentsFilesToWrite()\n );\n }\n /**\n * e.g. [bar, bar/foo] => [bar_1, bar/foo]\n * otherwise, the bar/foo component will be saved inside \"bar\" component.\n * in case bar_1 is taken, increment to bar_2 until the name is available.\n */\n private fixDirsIfNested(componentWriterInstances: ComponentWriter[]) {\n const allDirs = componentWriterInstances.map((c) => c.writeToPath);\n\n // get all components that their root-dir is a parent of other components root-dir.\n const parentsOfOthersComps = componentWriterInstances.filter(({ writeToPath }) =>\n allDirs.find((d) => d.startsWith(`${writeToPath}/`))\n );\n if (!parentsOfOthersComps.length) {\n return;\n }\n const parentsOfOthersCompsDirs = parentsOfOthersComps.map((c) => c.writeToPath);\n\n const incrementPath = (p: string, number: number) => `${p}_${number}`;\n const existingRootDirs = Object.keys(this.consumer.bitMap.getAllTrackDirs());\n const allPaths: PathLinuxRelative[] = [...existingRootDirs, ...parentsOfOthersCompsDirs];\n const incrementRecursively = (p: string) => {\n let num = 1;\n let newPath = incrementPath(p, num);\n while (allPaths.includes(newPath)) {\n newPath = incrementPath(p, (num += 1));\n }\n return newPath;\n };\n\n // change the paths of all these parents root-dir to not collide with the children root-dir\n parentsOfOthersComps.forEach((componentWriter) => {\n if (existingRootDirs.includes(componentWriter.writeToPath)) return; // component already exists.\n const newPath = incrementRecursively(componentWriter.writeToPath);\n componentWriter.writeToPath = newPath;\n });\n }\n\n private getWriteParamsOfOneComponent(\n componentWithDeps: ComponentWithDependencies,\n opts: ManyComponentsWriterParams\n ): ComponentWriterProps {\n const componentRootDir: PathLinuxRelative = opts.writeToPath\n ? pathNormalizeToLinux(this.consumer.getPathRelativeToConsumer(path.resolve(opts.writeToPath)))\n : this.consumer.composeRelativeComponentPath(componentWithDeps.component.id);\n const getParams = () => {\n if (!this.consumer) {\n return {};\n }\n // components can't be saved with multiple versions, so we can ignore the version to find the component in bit.map\n const componentMap = this.consumer.bitMap.getComponentIfExist(componentWithDeps.component.id, {\n ignoreVersion: true,\n });\n this.throwErrorWhenDirectoryNotEmpty(this.consumer.toAbsolutePath(componentRootDir), componentMap, opts);\n return {\n existingComponentMap: componentMap,\n };\n };\n return {\n consumer: this.consumer,\n bitMap: this.consumer.bitMap,\n component: componentWithDeps.component,\n writeToPath: componentRootDir,\n writeConfig: opts.writeConfig,\n ...getParams(),\n };\n }\n private moveComponentsIfNeeded(opts: ManyComponentsWriterParams) {\n if (opts.writeToPath && this.consumer) {\n opts.componentsWithDependencies.forEach((componentWithDeps) => {\n // @ts-ignore componentWithDeps.component.componentMap is set\n const componentMap: ComponentMap = componentWithDeps.component.componentMap;\n if (!componentMap.rootDir) {\n throw new GeneralError(`unable to use \"--path\" flag.\nto move individual files, use bit move.\nto move all component files to a different directory, run bit remove and then bit import --path`);\n }\n const relativeWrittenPath = componentWithDeps.component.writtenPath;\n // @ts-ignore relativeWrittenPath is set at this point\n const absoluteWrittenPath = this.consumer.toAbsolutePath(relativeWrittenPath);\n // @ts-ignore this.writeToPath is set at this point\n const absoluteWriteToPath = path.resolve(opts.writeToPath); // don't use consumer.toAbsolutePath, it might be an inner dir\n if (relativeWrittenPath && absoluteWrittenPath !== absoluteWriteToPath) {\n const component = componentWithDeps.component;\n this.mover.moveExistingComponent(component, absoluteWrittenPath, absoluteWriteToPath);\n }\n });\n }\n }\n private throwErrorWhenDirectoryNotEmpty(\n componentDir: PathOsBasedAbsolute,\n componentMap: ComponentMap | null | undefined,\n opts: ManyComponentsWriterParams\n ) {\n // if not writeToPath specified, it goes to the default directory. When componentMap exists, the\n // component is not new, and it's ok to override the existing directory.\n if (!opts.writeToPath && componentMap) return;\n // if writeToPath specified and that directory is already used for that component, it's ok to override\n if (opts.writeToPath && componentMap && componentMap.rootDir && componentMap.rootDir === opts.writeToPath) return;\n\n if (fs.pathExistsSync(componentDir)) {\n if (!isDir(componentDir)) {\n throw new GeneralError(`unable to import to ${componentDir} because it's a file`);\n }\n if (!isDirEmptySync(componentDir) && opts.throwForExistingDir) {\n throw new GeneralError(\n `unable to import to ${componentDir}, the directory is not empty. use --override flag to delete the directory and then import`\n );\n }\n }\n }\n\n static slots = [];\n static dependencies = [InstallAspect, CompilerAspect, LoggerAspect, WorkspaceAspect, MoverAspect];\n static runtime = MainRuntime;\n static async provider([install, compiler, loggerMain, workspace, mover]: [\n InstallMain,\n CompilerMain,\n LoggerMain,\n Workspace,\n MoverMain\n ]) {\n const logger = loggerMain.createLogger(ComponentWriterAspect.id);\n return new ComponentWriterMain(install, compiler, workspace, logger, mover);\n }\n}\n\nComponentWriterAspect.addRuntime(ComponentWriterMain);\n\nexport default ComponentWriterMain;\n"],"mappings":"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"}
1
+ {"version":3,"names":["ComponentWriterMain","constructor","installer","compiler","workspace","logger","mover","consumer","writeMany","opts","debug","populateComponentsFilesToWrite","moveComponentsIfNeeded","persistComponentsData","installationError","compilationError","skipDependencyInstallation","installPackagesGracefully","compileGracefully","writeBitMap","installOpts","dedupe","updateExisting","import","install","undefined","err","consoleFailure","message","error","compileOnWorkspace","dataToPersist","DataToPersist","componentsWithDependencies","forEach","componentWithDeps","allComponents","component","allDependencies","merge","componentsConfig","config","hasChanged","jsonFiles","toVinyl","getPath","addManyFiles","addBasePath","persistAllToFS","writeComponentsParams","map","getWriteParamsOfOneComponent","componentWriterInstances","writeParams","ComponentWriter","fixDirsIfNested","componentWriter","existingComponentMap","addComponentToBitMap","writeToPath","resetConfig","mapSeries","allDirs","c","parentsOfOthersComps","filter","find","d","startsWith","length","parentsOfOthersCompsDirs","incrementPath","p","number","existingRootDirs","Object","keys","bitMap","getAllTrackDirs","allPaths","incrementRecursively","num","newPath","includes","componentRootDir","pathNormalizeToLinux","getPathRelativeToConsumer","path","resolve","composeRelativeComponentPath","id","getParams","componentMap","getComponentIfExist","ignoreVersion","throwErrorWhenDirectoryNotEmpty","toAbsolutePath","writeConfig","rootDir","GeneralError","relativeWrittenPath","writtenPath","absoluteWrittenPath","absoluteWriteToPath","moveExistingComponent","componentDir","fs","pathExistsSync","isDir","isDirEmptySync","throwForExistingDir","provider","loggerMain","createLogger","ComponentWriterAspect","InstallAspect","CompilerAspect","LoggerAspect","WorkspaceAspect","MoverAspect","MainRuntime","addRuntime"],"sources":["component-writer.main.runtime.ts"],"sourcesContent":["import { MainRuntime } from '@teambit/cli';\nimport { CompilerAspect, CompilerMain } from '@teambit/compiler';\nimport InstallAspect, { InstallMain } from '@teambit/install';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport WorkspaceAspect, { Workspace } from '@teambit/workspace';\nimport fs from 'fs-extra';\nimport mapSeries from 'p-map-series';\nimport * as path from 'path';\nimport MoverAspect, { MoverMain } from '@teambit/mover';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport { ComponentWithDependencies } from '@teambit/legacy/dist/scope';\nimport { isDir, isDirEmptySync } from '@teambit/legacy/dist/utils';\nimport { PathLinuxRelative, pathNormalizeToLinux, PathOsBasedAbsolute } from '@teambit/legacy/dist/utils/path';\nimport ComponentMap from '@teambit/legacy/dist/consumer/bit-map/component-map';\nimport DataToPersist from '@teambit/legacy/dist/consumer/component/sources/data-to-persist';\nimport Consumer from '@teambit/legacy/dist/consumer/consumer';\nimport ComponentWriter, { ComponentWriterProps } from './component-writer';\nimport { ComponentWriterAspect } from './component-writer.aspect';\n\nexport interface ManyComponentsWriterParams {\n componentsWithDependencies: ComponentWithDependencies[];\n writeToPath?: string;\n throwForExistingDir?: boolean;\n writeConfig?: boolean;\n skipDependencyInstallation?: boolean;\n verbose?: boolean;\n resetConfig?: boolean;\n}\n\nexport type ComponentWriterResults = { installationError?: Error; compilationError?: Error };\n\nexport class ComponentWriterMain {\n constructor(\n private installer: InstallMain,\n private compiler: CompilerMain,\n private workspace: Workspace,\n private logger: Logger,\n private mover: MoverMain\n ) {}\n\n get consumer(): Consumer {\n return this.workspace.consumer;\n }\n\n async writeMany(opts: ManyComponentsWriterParams): Promise<ComponentWriterResults> {\n this.logger.debug('writeMany, started');\n await this.populateComponentsFilesToWrite(opts);\n this.moveComponentsIfNeeded(opts);\n await this.persistComponentsData(opts);\n let installationError: Error | undefined;\n let compilationError: Error | undefined;\n if (!opts.skipDependencyInstallation) {\n installationError = await this.installPackagesGracefully();\n // no point to compile if the installation is not running. the environment is not ready.\n compilationError = await this.compileGracefully();\n }\n await this.consumer.writeBitMap();\n this.logger.debug('writeMany, completed!');\n return { installationError, compilationError };\n }\n\n private async installPackagesGracefully(): Promise<Error | undefined> {\n this.logger.debug('installPackagesGracefully, start installing packages');\n try {\n const installOpts = {\n dedupe: true,\n updateExisting: false,\n import: false,\n };\n await this.installer.install(undefined, installOpts);\n this.logger.debug('installPackagesGracefully, completed installing packages successfully');\n return undefined;\n } catch (err: any) {\n this.logger.consoleFailure(`installation failed with the following error: ${err.message}`);\n this.logger.error('installPackagesGracefully, package-installer found an error', err);\n return err;\n }\n }\n private async compileGracefully(): Promise<Error | undefined> {\n try {\n await this.compiler.compileOnWorkspace();\n return undefined;\n } catch (err: any) {\n this.logger.consoleFailure(`compilation failed with the following error: ${err.message}`);\n this.logger.error('compileGracefully, compiler found an error', err);\n return err;\n }\n }\n private async persistComponentsData(opts: ManyComponentsWriterParams) {\n const dataToPersist = new DataToPersist();\n opts.componentsWithDependencies.forEach((componentWithDeps) => {\n const allComponents = [componentWithDeps.component, ...componentWithDeps.allDependencies];\n allComponents.forEach((component) => dataToPersist.merge(component.dataToPersist));\n });\n const componentsConfig = this.consumer?.config?.componentsConfig;\n if (componentsConfig?.hasChanged) {\n const jsonFiles = await this.consumer?.config.toVinyl(this.consumer.getPath());\n if (jsonFiles) {\n dataToPersist.addManyFiles(jsonFiles);\n }\n }\n dataToPersist.addBasePath(this.consumer.getPath());\n await dataToPersist.persistAllToFS();\n }\n private async populateComponentsFilesToWrite(opts: ManyComponentsWriterParams) {\n const writeComponentsParams = opts.componentsWithDependencies.map((componentWithDeps: ComponentWithDependencies) =>\n this.getWriteParamsOfOneComponent(componentWithDeps, opts)\n );\n const componentWriterInstances = writeComponentsParams.map((writeParams) => new ComponentWriter(writeParams));\n this.fixDirsIfNested(componentWriterInstances);\n // add componentMap entries into .bitmap before starting the process because steps like writing package-json\n // rely on .bitmap to determine whether a dependency exists and what's its origin\n componentWriterInstances.forEach((componentWriter: ComponentWriter) => {\n componentWriter.existingComponentMap =\n componentWriter.existingComponentMap || componentWriter.addComponentToBitMap(componentWriter.writeToPath);\n });\n if (opts.resetConfig) {\n componentWriterInstances.forEach((componentWriter: ComponentWriter) => {\n delete componentWriter.existingComponentMap?.config;\n });\n }\n await mapSeries(componentWriterInstances, (componentWriter: ComponentWriter) =>\n componentWriter.populateComponentsFilesToWrite()\n );\n }\n /**\n * e.g. [bar, bar/foo] => [bar_1, bar/foo]\n * otherwise, the bar/foo component will be saved inside \"bar\" component.\n * in case bar_1 is taken, increment to bar_2 until the name is available.\n */\n private fixDirsIfNested(componentWriterInstances: ComponentWriter[]) {\n const allDirs = componentWriterInstances.map((c) => c.writeToPath);\n\n // get all components that their root-dir is a parent of other components root-dir.\n const parentsOfOthersComps = componentWriterInstances.filter(({ writeToPath }) =>\n allDirs.find((d) => d.startsWith(`${writeToPath}/`))\n );\n if (!parentsOfOthersComps.length) {\n return;\n }\n const parentsOfOthersCompsDirs = parentsOfOthersComps.map((c) => c.writeToPath);\n\n const incrementPath = (p: string, number: number) => `${p}_${number}`;\n const existingRootDirs = Object.keys(this.consumer.bitMap.getAllTrackDirs());\n const allPaths: PathLinuxRelative[] = [...existingRootDirs, ...parentsOfOthersCompsDirs];\n const incrementRecursively = (p: string) => {\n let num = 1;\n let newPath = incrementPath(p, num);\n while (allPaths.includes(newPath)) {\n newPath = incrementPath(p, (num += 1));\n }\n return newPath;\n };\n\n // change the paths of all these parents root-dir to not collide with the children root-dir\n parentsOfOthersComps.forEach((componentWriter) => {\n if (existingRootDirs.includes(componentWriter.writeToPath)) return; // component already exists.\n const newPath = incrementRecursively(componentWriter.writeToPath);\n componentWriter.writeToPath = newPath;\n });\n }\n\n private getWriteParamsOfOneComponent(\n componentWithDeps: ComponentWithDependencies,\n opts: ManyComponentsWriterParams\n ): ComponentWriterProps {\n const componentRootDir: PathLinuxRelative = opts.writeToPath\n ? pathNormalizeToLinux(this.consumer.getPathRelativeToConsumer(path.resolve(opts.writeToPath)))\n : this.consumer.composeRelativeComponentPath(componentWithDeps.component.id);\n const getParams = () => {\n if (!this.consumer) {\n return {};\n }\n // components can't be saved with multiple versions, so we can ignore the version to find the component in bit.map\n const componentMap = this.consumer.bitMap.getComponentIfExist(componentWithDeps.component.id, {\n ignoreVersion: true,\n });\n this.throwErrorWhenDirectoryNotEmpty(this.consumer.toAbsolutePath(componentRootDir), componentMap, opts);\n return {\n existingComponentMap: componentMap,\n };\n };\n return {\n consumer: this.consumer,\n bitMap: this.consumer.bitMap,\n component: componentWithDeps.component,\n writeToPath: componentRootDir,\n writeConfig: opts.writeConfig,\n ...getParams(),\n };\n }\n private moveComponentsIfNeeded(opts: ManyComponentsWriterParams) {\n if (opts.writeToPath && this.consumer) {\n opts.componentsWithDependencies.forEach((componentWithDeps) => {\n // @ts-ignore componentWithDeps.component.componentMap is set\n const componentMap: ComponentMap = componentWithDeps.component.componentMap;\n if (!componentMap.rootDir) {\n throw new GeneralError(`unable to use \"--path\" flag.\nto move individual files, use bit move.\nto move all component files to a different directory, run bit remove and then bit import --path`);\n }\n const relativeWrittenPath = componentWithDeps.component.writtenPath;\n // @ts-ignore relativeWrittenPath is set at this point\n const absoluteWrittenPath = this.consumer.toAbsolutePath(relativeWrittenPath);\n // @ts-ignore this.writeToPath is set at this point\n const absoluteWriteToPath = path.resolve(opts.writeToPath); // don't use consumer.toAbsolutePath, it might be an inner dir\n if (relativeWrittenPath && absoluteWrittenPath !== absoluteWriteToPath) {\n const component = componentWithDeps.component;\n this.mover.moveExistingComponent(component, absoluteWrittenPath, absoluteWriteToPath);\n }\n });\n }\n }\n private throwErrorWhenDirectoryNotEmpty(\n componentDir: PathOsBasedAbsolute,\n componentMap: ComponentMap | null | undefined,\n opts: ManyComponentsWriterParams\n ) {\n // if not writeToPath specified, it goes to the default directory. When componentMap exists, the\n // component is not new, and it's ok to override the existing directory.\n if (!opts.writeToPath && componentMap) return;\n // if writeToPath specified and that directory is already used for that component, it's ok to override\n if (opts.writeToPath && componentMap && componentMap.rootDir && componentMap.rootDir === opts.writeToPath) return;\n\n if (fs.pathExistsSync(componentDir)) {\n if (!isDir(componentDir)) {\n throw new GeneralError(`unable to import to ${componentDir} because it's a file`);\n }\n if (!isDirEmptySync(componentDir) && opts.throwForExistingDir) {\n throw new GeneralError(\n `unable to import to ${componentDir}, the directory is not empty. use --override flag to delete the directory and then import`\n );\n }\n }\n }\n\n static slots = [];\n static dependencies = [InstallAspect, CompilerAspect, LoggerAspect, WorkspaceAspect, MoverAspect];\n static runtime = MainRuntime;\n static async provider([install, compiler, loggerMain, workspace, mover]: [\n InstallMain,\n CompilerMain,\n LoggerMain,\n Workspace,\n MoverMain\n ]) {\n const logger = loggerMain.createLogger(ComponentWriterAspect.id);\n return new ComponentWriterMain(install, compiler, workspace, logger, mover);\n }\n}\n\nComponentWriterAspect.addRuntime(ComponentWriterMain);\n\nexport default ComponentWriterMain;\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/component-writer",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "homepage": "https://bit.dev/teambit/component/component-writer",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.component",
8
8
  "name": "component-writer",
9
- "version": "0.0.13"
9
+ "version": "0.0.15"
10
10
  },
11
11
  "dependencies": {
12
12
  "fs-extra": "10.0.0",
@@ -14,13 +14,12 @@
14
14
  "core-js": "^3.0.0",
15
15
  "@babel/runtime": "7.20.0",
16
16
  "@teambit/harmony": "0.4.6",
17
- "@teambit/bit-error": "0.0.402",
18
- "@teambit/cli": "0.0.656",
19
- "@teambit/compiler": "0.0.977",
20
- "@teambit/install": "0.0.103",
21
- "@teambit/logger": "0.0.749",
22
- "@teambit/mover": "0.0.8",
23
- "@teambit/workspace": "0.0.977"
17
+ "@teambit/cli": "0.0.658",
18
+ "@teambit/compiler": "0.0.979",
19
+ "@teambit/install": "0.0.105",
20
+ "@teambit/logger": "0.0.751",
21
+ "@teambit/mover": "0.0.10",
22
+ "@teambit/workspace": "0.0.979"
24
23
  },
25
24
  "devDependencies": {
26
25
  "@types/fs-extra": "9.0.7",
@@ -32,7 +31,7 @@
32
31
  "@types/testing-library__jest-dom": "5.9.5"
33
32
  },
34
33
  "peerDependencies": {
35
- "@teambit/legacy": "1.0.438",
34
+ "@teambit/legacy": "1.0.439",
36
35
  "react": "^16.8.0 || ^17.0.0",
37
36
  "react-dom": "^16.8.0 || ^17.0.0"
38
37
  },