本文整理汇总了TypeScript中out.createTargets函数的典型用法代码示例。如果您正苦于以下问题:TypeScript createTargets函数的具体用法?TypeScript createTargets怎么用?TypeScript createTargets使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了createTargets函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getPossiblePlatforms
export function getPossiblePlatforms(type?: string): Map<Platform, Map<Arch, string[]>> {
const platforms = [Platform.fromString(process.platform)]
if (process.platform === Platform.OSX.nodeName) {
if (process.env.LINUX_SKIP == null) {
platforms.push(Platform.LINUX)
}
if (process.env.CI == null) {
platforms.push(Platform.WINDOWS)
}
}
else if (process.platform === Platform.LINUX.nodeName && process.env.SKIP_WIN == null) {
platforms.push(Platform.WINDOWS)
}
return createTargets(platforms, type)
}
示例2: assertPack
test.ifOsx("two-package", () => assertPack("test-app", signed({
targets: createTargets([Platform.OSX], null, "all"),
})))
示例3: assertPack
test.ifMac("two-package", () => assertPack("test-app", {targets: createTargets([Platform.MAC], null, "all")}, {signed: true, useTempDir: true}))