@kv-systems/ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
152 lines (131 loc) • 5.85 kB
text/typescript
import * as path from 'path';
import { NgPackageEntryConfig } from '../../../ng-entrypoint.schema';
import { NgPackageConfig } from '../../../ng-package.schema';
import { CssUrl } from '../../styles/stylesheet-processor';
import { ensureUnixPath } from '../../utils/path';
/** A list of output absolute paths for various formats */
export interface DestinationFiles {
/** Absolute path of this entry point `declarations` */
declarations: string;
/** Absolute path of this entry point `FESM2022` module */
fesm2022: string;
/** Absolute path of this entry point `ESM2022` module */
esm2022: string;
/** Sub path of entrypoint distributable. */
directory: string;
/** Absolute path of this entry point `FESM2022` directory */
fesm2022Dir: string;
}
/**
* An entry point - quoting Angular Package Format - is:
*
* > a module intended to be imported by the user. It is referenced by a unique module ID and
* > exports the public API referenced by that module ID. An example is `@angular/core` or
* > `@angular/core/testing`. Both entry points exist in the `@angular/core` package, but they
* > export different symbols. A package can have many entry points.
*
* #### Public API, source file tree and build output
*
* An entry point serves as the root of a source tree.
* The entry point's public API references one TypeScript source file (`*.ts`).
* That source file, e.g. `public_api.ts`, references other source files who in turn may reference
* other source files, thus creating a tree of source code files.
* The source files may be TypeScript (`*.ts`), Templates (`.html`) or Stylesheets
* (`.css`, `.scss`, ..), or other formats.
*
* The compilation process for an entry point is a series of transformations applied to the source
* files, e.g. TypeScript compilation, Inlining of Stylesheets and Templates, and so on.
* As a result of the compilation process, an entry point is transpiled to a set of artefacts
* (the build output) which include a FESM'15 Bundle, a FESM'5 Bundle, AoT metadata, TypeScript
* type definitions, and so on.
*
* #### Representation in the domain
*
* The set of artefacts is reflected by `NgArtefacts`;
* one `NgEntryPoint` relates to one `NgArtefacts`.
* The parent package of an entry point is reflected by `NgPackage`.
*/
export class NgEntryPoint {
constructor(
/** Values from the `package.json` file of this entry point. */
public readonly packageJson: Record<string, any>,
/** Values from either the `ngPackage` option (from `package.json`) or values from `ng-package.json`. */
public readonly ngPackageJson: NgPackageConfig,
/** Absolute directory path of this entry point's `package.json` location. */
public readonly basePath: string,
/** XX: additional auto-configured data passed for secondary entry point's. Needs better docs. */
private readonly secondaryData?: Record<string, any>,
) {}
/** Absolute file path of the entry point's source code entry file. */
public get entryFilePath(): string {
return path.resolve(this.basePath, this.entryFile);
}
/** Whether or not the entrypoint is secondary */
public get isSecondaryEntryPoint(): boolean {
return !!this.secondaryData;
}
/** Absolute directory path of this entry point's 'package.json'. */
public get destinationPath(): string {
return this.secondaryData ? this.secondaryData.destinationPath : path.resolve(this.basePath, this.$get('dest'));
}
public get destinationFiles(): DestinationFiles {
let primaryDestPath = this.destinationPath;
let secondaryDir = '';
if (this.secondaryData) {
primaryDestPath = this.secondaryData.primaryDestinationPath;
secondaryDir = path.relative(primaryDestPath, this.secondaryData.destinationPath);
}
const flatModuleFile = this.flatModuleFile;
const pathJoinWithDest = (...paths: string[]) => path.join(primaryDestPath, ...paths);
return {
directory: ensureUnixPath(secondaryDir) ?? '',
declarations: pathJoinWithDest(secondaryDir, 'index.d.ts'),
esm2022: pathJoinWithDest('esm2022', secondaryDir, `${flatModuleFile}.mjs`),
fesm2022: pathJoinWithDest('fesm2022', `${flatModuleFile}.mjs`),
fesm2022Dir: pathJoinWithDest('fesm2022'),
};
}
public $get(key: string): any {
const parts = key.split('.');
let value = this.ngPackageJson as unknown;
for (const key of parts) {
if (typeof value === 'object' && key in value) {
value = value[key];
} else {
return undefined;
}
}
return value;
}
public get entryFile(): string {
// `./index.ts` -> `index.ts`
return path.posix.normalize(this.$get('lib.entryFile'));
}
public get cssUrl(): CssUrl {
return this.$get('lib.cssUrl');
}
public get flatModuleFile(): string {
return this.$get('lib.flatModuleFile') || this.flattenModuleId('-');
}
public get styleIncludePaths(): string[] {
const includePaths = this.$get('lib.styleIncludePaths') || [];
return includePaths.map(includePath =>
path.isAbsolute(includePath) ? includePath : path.resolve(this.basePath, includePath),
);
}
public get sass(): NgPackageEntryConfig['lib']['sass'] {
return this.$get('lib.sass');
}
/**
* The module ID is an "identifier of a module used in the import statements, e.g.
* '@angular/core'. The ID often maps directly to a path on the filesystem, but this
* is not always the case due to various module resolution strategies."
*/
public get moduleId(): string {
return this.secondaryData ? this.secondaryData.moduleId : this.packageJson['name'];
}
private flattenModuleId(separator = '.'): string {
const moduleId = this.moduleId[0] === '@' ? this.moduleId.slice(1) : this.moduleId;
return moduleId.split('/').join(separator);
}
}