mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.8 KiB
38 lines
1.8 KiB
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.readPackageJsonConfigurationCache = readPackageJsonConfigurationCache;
|
|
const plugins_1 = require("../src/project-graph/plugins");
|
|
const workspace_root_1 = require("../src/utils/workspace-root");
|
|
const package_json_1 = require("../src/plugins/package-json");
|
|
const cache_directory_1 = require("../src/utils/cache-directory");
|
|
const path_1 = require("path");
|
|
const fileutils_1 = require("../src/utils/fileutils");
|
|
const cachePath = (0, path_1.join)(cache_directory_1.workspaceDataDirectory, 'package-json.hash');
|
|
function readPackageJsonConfigurationCache() {
|
|
try {
|
|
return (0, fileutils_1.readJsonFile)(cachePath);
|
|
}
|
|
catch (e) {
|
|
return {};
|
|
}
|
|
}
|
|
function writeCache(cache) {
|
|
(0, fileutils_1.writeJsonFile)(cachePath, cache);
|
|
}
|
|
const plugin = {
|
|
name: 'nx-all-package-jsons-plugin',
|
|
createNodesV2: [
|
|
'*/**/package.json',
|
|
(configFiles, options, context) => {
|
|
const cache = readPackageJsonConfigurationCache();
|
|
const patterns = (0, package_json_1.buildPackageJsonPatterns)(context.workspaceRoot, (f) => (0, fileutils_1.readJsonFile)((0, path_1.join)(context.workspaceRoot, f)));
|
|
const isInPackageJsonWorkspaces = (0, package_json_1.buildPackageJsonWorkspacesMatcher)(patterns);
|
|
const result = (0, plugins_1.createNodesFromFiles)((packageJsonPath) => (0, package_json_1.createNodeFromPackageJson)(packageJsonPath, workspace_root_1.workspaceRoot, cache, isInPackageJsonWorkspaces(packageJsonPath)), configFiles, options, context);
|
|
writeCache(cache);
|
|
return result;
|
|
},
|
|
],
|
|
};
|
|
module.exports = plugin;
|
|
module.exports.readPackageJsonConfigurationCache =
|
|
readPackageJsonConfigurationCache;
|
|
|