2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2025-01-10 17:24:39 +00:00
nativefier/cli.js

55 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2015-03-23 02:51:19 +00:00
#!/usr/bin/env node
2015-07-05 06:17:40 +00:00
var fs = require('fs');
var args = require('minimist')(process.argv.slice(2), {boolean: ['prune', 'asar', 'all', 'overwrite']});
var packager = require('./');
var usage = fs.readFileSync(__dirname + '/usage.txt').toString();
2015-07-05 06:16:07 +00:00
var validator = require('validator');
var tempDir = require('./tempDir');
2015-03-23 02:51:19 +00:00
args.dir = 'blah'; // set to true first
2015-07-05 06:08:13 +00:00
args.name = args._[0];
2015-03-23 02:51:19 +00:00
2015-07-05 06:17:40 +00:00
var protocolSchemes = [].concat(args.protocol || []);
var protocolNames = [].concat(args['protocol-name'] || []);
2015-04-05 04:13:27 +00:00
if (protocolSchemes && protocolNames && protocolNames.length === protocolSchemes.length) {
2015-07-05 06:17:40 +00:00
args.protocols = protocolSchemes.map(function (scheme, i) {
return {schemes: [scheme], name: protocolNames[i]};
})
2015-04-05 04:13:27 +00:00
}
if (!args.dir || !args.name || !args.version || !args.target || (!args.all && (!args.platform || !args.arch))) {
console.error(usage);
2015-07-05 06:16:07 +00:00
2015-07-05 06:17:40 +00:00
process.exit(1);
2015-07-05 06:16:07 +00:00
}
if (!validator.isURL(args.target)) {
console.error('Enter a valid target url');
2015-07-05 06:17:40 +00:00
process.exit(1);
2015-03-23 02:51:19 +00:00
}
tempDir(args.name, args.target, function (error, appDir) {
2015-07-05 06:08:13 +00:00
if (error) {
console.error(error);
2015-07-05 06:17:40 +00:00
process.exit(1);
} else {
args.dir = appDir;
packager(args, function done(err, appPaths) {
if (err) {
if (err.message) console.error(err.message);
else console.error(err, err.stack);
process.exit(1);
}
if (appPaths.length > 1) console.error('Wrote new apps to:\n' + appPaths.join('\n'));
else if (appPaths.length === 1) console.error('Wrote new app to', appPaths[0]);
});
2015-07-05 06:17:40 +00:00
}
2015-07-05 06:17:40 +00:00
});