@rxap/plugin-library
Version:
This package provides generators and executors for managing and maintaining Nx plugin libraries. It includes functionality for generating index exports, fixing dependencies, generating JSON schemas, and more. It helps streamline the development process fo
11 lines • 630 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.initProject = initProject;
const sync_project_name_with_ts_config_paths_1 = require("./sync-project-name-with-ts-config-paths");
const update_project_targets_1 = require("./update-project-targets");
function initProject(tree, projectName, project, options) {
console.log(`init buildable library project: ${projectName}`);
(0, update_project_targets_1.updateProjectTargets)(project, options);
(0, sync_project_name_with_ts_config_paths_1.syncProjectNameWithTsConfigPaths)(tree, projectName);
}
//# sourceMappingURL=init-project.js.map