UNPKG

@interopio/cli

Version:

Interop.io CLI - a command line for creating Interop.io applications

17 lines (16 loc) 740 B
export const DEFAULT_CONFIG = {}; export const TEMPLATES_REPO_URL = "https://github.com/InteropIO/browser-templates/archive/refs/heads/master.zip"; export const MANIFEST_URL = "https://raw.githubusercontent.com/InteropIO/browser-templates/master/manifest.json"; export const getTemplatesVersionRepoUrl = (version) => `https://github.com/InteropIO/browser-templates/archive/refs/tags/${version}.zip`; export const TEMP_ZIP_NAME = "temp.zip"; export const NPM_ORG_SCOPE = "@interopio"; export const PLATFORM_TEMPLATE = { DEV_REACT_SEED: "dev-react-seed", HOME_REACT_WSP: "home-react-wsp", VANILLA_JS: "vanilla-js", WSP_FRAME: "wsp-frame" }; export const CLIENT_TEMPLATE = { REACT: "react", VANILLA_JS: "vanilla-js" };