Documentation - v0.0.0
    Preparing search index...

    Represents a build step.

    Hierarchy (View Summary)

    • BaseBuildStep<
          { workspaceDeps?: (string | javascript.NodeProject)[] },
          {
              pnpm: PnpmWorkspace;
              addWorkspaceDeps(
                  ...dependency: [
                      options: | string
                      | NodeProject
                      | { addTsPath: boolean; depType: DependencyType },
                      ...deps: (string | NodeProject)[],
                  ],
              ): void;
              formatExecCommand(...args: string[]): string;
          },
      >
      • TypescriptESMManifestBuilder
    Index

    Constructors

    Properties

    _output: {
        pnpm: PnpmWorkspace;
        addWorkspaceDeps(
            ...dependency: [
                options: | string
                | NodeProject
                | { addTsPath: boolean; depType: DependencyType },
                ...deps: (string | NodeProject)[],
            ],
        ): void;
        formatExecCommand(...args: string[]): string;
    }

    Additional project property types to merge with resulting project type.

    _outputOptions: { workspaceDeps?: (string | NodeProject)[] }

    Options type to merge with project options.

    options?: { sideEffects: boolean }

    Methods

    • Apply modifications to project options prior to instantiation.

      Parameters

      • options: ProjectOptions & { workspaceDeps?: (string | NodeProject)[] }

        Input project options.

      Returns ProjectOptions & { workspaceDeps?: (string | NodeProject)[] }