• build a single package using vite

    tiny wrapper on top of vite build

    Parameters

    • params: {
          configPath?: string;
          fixedVersion?: string;
          packageName: string;
          workspace?: WorkspacePackage[];
          workspaceRoot: string;
      }
      • OptionalconfigPath?: string

        path to the build.config.js file

      • OptionalfixedVersion?: string

        "fixed" version to use when building the package

      • packageName: string

        name of the package to build

      • Optionalworkspace?: WorkspacePackage[]

        list of workspace packages including root

      • workspaceRoot: string

        path to the workspace root

    Returns Promise<void>