Skip to content

Commit

Permalink
Bring back missing android command
Browse files Browse the repository at this point in the history
Summary:
Fixes #9312

(Sorry for inconvenience, could've been removed by mistake!)

Bonus: projectName can be configured rather than always defaulting to package.json name, not sure if helpful, but just added it since we have a `default` function that makes sense in this case.
Closes #9525

Differential Revision: D3753610

Pulled By: bestander

fbshipit-source-id: 641872855b9865502f4055910262686edc4b504e
  • Loading branch information
grabbou authored and Facebook Github Bot 2 committed Aug 23, 2016
1 parent a686816 commit 993cfa1
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[ignore]

# We fork some components by platform.
.*/*.android.js
.*/*[.]android.js

# Ignore templates with `@flow` in header
.*/local-cli/generator.*
Expand Down
32 changes: 32 additions & 0 deletions local-cli/android/android.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
'use strict';

var generate = require('../generate/generate');
var fs = require('fs');

function android(argv, config, args) {
return generate([
'--platform', 'android',
'--project-path', process.cwd(),
'--project-name', args.projectName,
], config);
}

module.exports = {
name: 'android',
description: 'creates an empty android project',
func: android,
options: [{
command: '--project-name [name]',
default: () => JSON.parse(
fs.readFileSync('package.json', 'utf8')
).name,
}],
};
1 change: 1 addition & 0 deletions local-cli/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export type Command = {
};

const documentedCommands = [
require('./android/android'),
require('./server/server'),
require('./runIOS/runIOS'),
require('./runAndroid/runAndroid'),
Expand Down

0 comments on commit 993cfa1

Please sign in to comment.