Esempio n. 1
0
function MobileWebBuilder() {
	Builder.apply(this, arguments);

	this.templatesDir = path.join(this.platformPath, 'templates', 'build');

	this.imageMimeTypes = {
		'.png': 'image/png',
		'.gif': 'image/gif',
		'.jpg': 'image/jpg',
		'.jpeg': 'image/jpg'
	};

	this.prefetch = [];

	this.targets = ['web'];
}
Esempio n. 2
0
function iOSModuleBuilder() {
	Builder.apply(this, arguments);
}