manifoldjs-windows10
Version:
Manifoldjs Windows 10 Platform
16 lines (10 loc) • 574 B
JavaScript
;
var manifoldjsLib = require('manifoldjs-lib');
var imageGroupValidation = manifoldjsLib.manifestTools.imageGroupValidation;
var constants = require('../constants');
module.exports = function (manifestContent, callback) {
var description = 'A splash screen logo of any of the following sizes is required for Windows: 620x300, 868x420, 1116x540',
platform = constants.platform.id,
validIconSizes = ['620x300', '868x420', '1116x540'];
imageGroupValidation(manifestContent, description, platform, validIconSizes, callback);
};