#! /usr/bin/env node import 'source-map-support/register'; import path from 'path'; import program from 'commander'; import nativefier from './index'; const packageJson = require(path.join('..', 'package')); function collect(val, memo) { memo.push(val); return memo; } if (require.main === module) { program .version(packageJson.version) .arguments(' [dest]') .action(function(targetUrl, appDir) { program.targetUrl = targetUrl; program.out = appDir; }) .option('-n, --name ', 'app name') .option('-p, --platform ', '\'osx\', \'linux\' or \'windows\'') .option('-a, --arch ', '\'ia32\' or \'x64\'') .option('-e, --electron-version ', 'electron version to package, without the \'v\', see https://github.com/atom/electron/releases') .option('--no-overwrite', 'do not override output directory if it already exists, defaults to false') .option('-c, --conceal', 'packages the source code within your app into an archive, defaults to false, see http://electron.atom.io/docs/v0.36.0/tutorial/application-packaging/') .option('--counter', 'if the target app should use a persistant counter badge in the dock (OSX only), defaults to false') .option('-i, --icon ', 'the icon file to use as the icon for the app (should be a .icns file on OSX, .png for Windows and Linux)') .option('--width ', 'set window width, defaults to 1280px', parseInt) .option('--height ', 'set window height, defaults to 800px', parseInt) .option('-m, --show-menu-bar', 'set menu bar visible, defaults to false') .option('-u, --user-agent ', 'set the user agent string for the app') .option('--honest', 'prevent the nativefied app from changing the user agent string to masquerade as a regular chrome browser') .option('--ignore-certificate', 'ignore certificate related errors') .option('--insecure', 'enable loading of insecure content, defaults to false') .option('--flash ', 'path to Chrome flash plugin, find it in `Chrome://plugins`') .option('--inject ', 'path to a file to be injected', collect, []) .option('--full-screen', 'if the app should always be started in full screen') .parse(process.argv); if (!process.argv.slice(2).length) { program.help(); } nativefier(program, (error, appPath) => { if (error) { console.error(error); return; } if (!appPath) { // app exists and --overwrite is not passed return; } console.log(`App built to ${appPath}`); }); }