78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import {
|
|
extractLayoutDirectory,
|
|
getWorkspaceLayout,
|
|
joinPathFragments,
|
|
names,
|
|
Tree,
|
|
} from '@nx/devkit';
|
|
import type { Schema } from '../schema';
|
|
import type { NormalizedSchema } from './normalized-schema';
|
|
import { E2eTestRunner, UnitTestRunner } from '../../../utils/test-runners';
|
|
import { Linter } from '@nx/linter';
|
|
import {
|
|
normalizeDirectory,
|
|
normalizePrefix,
|
|
normalizeProjectName,
|
|
} from '../../utils/project';
|
|
|
|
export function normalizeOptions(
|
|
host: Tree,
|
|
options: Partial<Schema>
|
|
): NormalizedSchema {
|
|
const { layoutDirectory, projectDirectory } = extractLayoutDirectory(
|
|
options.directory
|
|
);
|
|
const appDirectory = normalizeDirectory(options.name, projectDirectory);
|
|
const appProjectName = normalizeProjectName(options.name, projectDirectory);
|
|
const e2eProjectName = options.rootProject
|
|
? 'e2e'
|
|
: `${names(options.name).fileName}-e2e`;
|
|
|
|
const {
|
|
appsDir: defaultAppsDir,
|
|
npmScope,
|
|
standaloneAsDefault,
|
|
} = getWorkspaceLayout(host);
|
|
const appsDir = layoutDirectory ?? defaultAppsDir;
|
|
const appProjectRoot = options.rootProject
|
|
? '.'
|
|
: joinPathFragments(appsDir, appDirectory);
|
|
const e2eProjectRoot = options.rootProject
|
|
? 'e2e'
|
|
: joinPathFragments(appsDir, `${appDirectory}-e2e`);
|
|
|
|
const parsedTags = options.tags
|
|
? options.tags.split(',').map((s) => s.trim())
|
|
: [];
|
|
|
|
const prefix = normalizePrefix(options.prefix, npmScope);
|
|
|
|
options.standaloneConfig = options.standaloneConfig ?? standaloneAsDefault;
|
|
|
|
const ngCliSchematicAppRoot = appProjectName;
|
|
const ngCliSchematicE2ERoot = `${appProjectName}/e2e`;
|
|
|
|
// Set defaults and then overwrite with user options
|
|
return {
|
|
style: 'css',
|
|
routing: false,
|
|
inlineStyle: false,
|
|
inlineTemplate: false,
|
|
skipTests: options.unitTestRunner === UnitTestRunner.None,
|
|
skipFormat: false,
|
|
unitTestRunner: UnitTestRunner.Jest,
|
|
e2eTestRunner: E2eTestRunner.Cypress,
|
|
linter: Linter.EsLint,
|
|
strict: true,
|
|
...options,
|
|
prefix,
|
|
name: appProjectName,
|
|
appProjectRoot,
|
|
e2eProjectRoot,
|
|
e2eProjectName,
|
|
parsedTags,
|
|
ngCliSchematicAppRoot,
|
|
ngCliSchematicE2ERoot,
|
|
};
|
|
}
|