@interopio/cli
Version:
Interop.io CLI - a command line for creating Interop.io applications
19 lines (18 loc) • 769 B
JavaScript
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",
NG: "ng",
VANILLA_JS: "vanilla-js",
WSP_FRAME: "wsp-frame",
};
export const CLIENT_TEMPLATE = {
NG: "ng",
REACT: "react",
VANILLA_JS: "vanilla-js"
};