nodekit-cli
Version:
A command-line tool for creating {NK} NodeKit applications
69 lines (59 loc) • 2.48 kB
JavaScript
/*
Licensed to OffGrid Networks (OGN) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. OGN licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
/*jshint node: true*/
var Q = require('q'),
path = require('path'),
build = require('./build'),
spawn = require('./spawn'),
events = require('nodekit-cli')['nodekit-cli-common'].events;
var projectPath = path.join(__dirname, '..', '..');
module.exports.run = function (runOptions) {
return Q.resolve().then(function () {
if (!runOptions.nobuild) {
return build.run(runOptions);
} else {
return Q.resolve();
}
}).then(function () {
return build.findXCodeProjectIn(projectPath);
}).then(function (projectName) {
var appPath = path.join(projectPath, 'build', projectName + '.app');
return runApp(appPath, projectName);
});
};
/**
* runs the app
* @return {Promise} Resolves when run succeeds otherwise rejects
*/
function runApp(appDir, appName) {
var binPath = path.join(appDir, 'Contents', 'MacOS', appName);
events.emit('log','Starting: ' + binPath);
return spawn(binPath);
}
module.exports.help = function () {
console.log('\nUsage: run [ --debug | --release | --nobuild ]');
console.log(' --debug : Builds project in debug mode. (Passed down to build command, if necessary)');
console.log(' --release : Builds project in release mode. (Passed down to build command, if necessary)');
console.log(' --nobuild : Uses pre-built package, or errors if project is not built.');
console.log('');
console.log('Examples:');
console.log(' run');
console.log(' run --release');
console.log(' run --debug');
console.log('');
process.exit(0);
};