UNPKG

@honor-minigame/cli

Version:

honor minigame pack cli

32 lines (26 loc) 595 B
// 文件摘要包(zip 文件) const DIGEST_ZIP_PATH = "META-INF/CERT" // 摘要文件夹 const DIGEST_ZIP_DIR = "META-INF" // 文件列表摘要的名称 const DIGEST_HASH_JSON = "hash.json" // 压缩参数,设置输出 buffer,以便对 buffer 进行操作 const COMPRESS_OPTS = { type: "nodebuffer", compression: "DEFLATE", compressionOptions: { level: 9, }, } // 签名模式 const SIGN_MODE = { DEBUG: "debug", RELEASE: "release", } export { DIGEST_ZIP_PATH, DIGEST_ZIP_DIR, DIGEST_HASH_JSON, COMPRESS_OPTS, SIGN_MODE, }