UNPKG

@agility/cli

Version:

Agility CLI for working with your content. (Public Beta)

14 lines 538 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getModelsFromFileSystem = getModelsFromFileSystem; /** * Get models from filesystem without side effects * Simplified - no unnecessary transformations * Pure function - no filesystem operations, delegates to fileOperations */ function getModelsFromFileSystem(fileOps) { var rawModels = fileOps.readJsonFilesFromFolder('models'); // Return models as-is - no transformation needed return rawModels; } //# sourceMappingURL=get-models.js.map