UNPKG

@interopio/desktop-cli

Version:

CLI tool for setting up, building and packaging io.Connect Desktop projects

71 lines 2.83 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.PackageJSONHelper = void 0; const path_1 = __importStar(require("path")); const file_1 = require("./file"); const fs_1 = require("fs"); const find_package_dir_1 = require("./find.package.dir"); class PackageJSONHelper { static packageJsonPath = path_1.default.resolve('package.json'); static getCliPackageJson() { const path = (0, path_1.join)((0, find_package_dir_1.findPackageRoot)(), "package.json"); if ((0, fs_1.existsSync)(path)) { return file_1.FileUtils.readJson(path); } return {}; } static getPackageJson() { const packageJson = file_1.FileUtils.readJson(this.packageJsonPath); if (!packageJson) { throw new Error('package.json not found '); } return packageJson; } static async updatePackageJson(updates) { const packageJson = this.getPackageJson(); const updated = { ...packageJson, ...updates }; await file_1.FileUtils.writeJson(this.packageJsonPath, updated); } static async getComponentConfig() { const packageJson = this.getPackageJson(); return packageJson.iocdComponents || {}; } static async updateComponentConfig(components) { await this.updatePackageJson({ iocdComponents: components }); } } exports.PackageJSONHelper = PackageJSONHelper; //# sourceMappingURL=pacakge.json.helper.js.map