UNPKG

@bubblewrap/cli

Version:

CLI tool to Generate TWA projects from a Web Manifest

60 lines (59 loc) 2.16 kB
"use strict"; /* * Copyright 2020 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.updateConfig = void 0; const core_1 = require("@bubblewrap/core"); const fs_1 = require("fs"); const config_1 = require("../config"); const config_2 = require("../config"); const strings_1 = require("../strings"); async function updateAndroidSdkPath(path, log) { if (!fs_1.existsSync(path)) { log.error('Please enter a valid path.'); return false; } const config = await config_1.loadOrCreateConfig(); const jdkPath = config.jdkPath; const newConfig = new core_1.Config(jdkPath, path); newConfig.saveConfig(config_2.DEFAULT_CONFIG_FILE_PATH); return true; } async function updateJdkPath(path, log) { if (!fs_1.existsSync(path)) { log.error('Please enter a valid path.'); return false; } const config = await config_1.loadOrCreateConfig(); const androidSdkPath = config.androidSdkPath; const newConfig = new core_1.Config(path, androidSdkPath); newConfig.saveConfig(config_2.DEFAULT_CONFIG_FILE_PATH); return true; } async function updateConfig(args, log = new core_1.ConsoleLog('updateConfig')) { if (args.jdkPath) { await updateJdkPath(args.JdkPath, log); } if (args.androidSdkPath) { await updateAndroidSdkPath(args.androidSdkPath, log); } if (!args.jdkPath && !args.androidSdkPath) { log.error(strings_1.enUS.updateConfigUsage); return false; } return true; } exports.updateConfig = updateConfig;