tifastlane
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "tifastlane", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Integrating fastlane.tools into Titanium Development", | ||
"main": "index.js", | ||
"scripts": { | ||
"postinstall": "sudo node install", | ||
"postinstall": "node install", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
@@ -9,0 +9,0 @@ }, |
@@ -11,8 +11,12 @@ # TiFastlane | ||
## Install | ||
## Install [![npm version](https://badge.fury.io/js/tifastlane.svg)](http://badge.fury.io/js/tifastlane) | ||
(Here we'll add the npm command to install) | ||
Make sure, you have the latest version of the Xcode command line tools installed: | ||
## Usage | ||
xcode-select --install | ||
Then install the CLI and all the required gems will be installed automatically. | ||
[sudo] npm install -g tifastlane | ||
### TiFastlane Configuration | ||
@@ -28,3 +32,56 @@ | ||
### CLI | ||
## Usage | ||
`tifastlane` must be executed from your Titanium App directory. It will automatically ready your `tiapp.xml` to determine your App configuration for all the tools. | ||
You can view the current settings that would be used by running: | ||
tifastlane status | ||
## Register App (produce + sigh) | ||
We have merged the actions of [produce](https://github.com/fastlane/produce) and [sigh](https://github.com/KrauseFx/sigh) into a single call. | ||
tifastlane register | ||
This simple command will register the current Titanium App on the Apple Developer Program and iTunes Connect, and then generate the Provisioning Profiles for App Store, Ad Hoc and Development. | ||
For default provisiong profiles will be generated for all platforms, but if you wish to only target a specific platform `appstore`, `adhoc` or `development`: | ||
tifastlane register <platform> | ||
### Advanced Options | ||
* `-i, --skip_itc` - Skips creating the app on Itunes Connect | ||
* `--force` - By default if the Provisioning Profiles exist, they will be skipped. User force to recreate and resign the profiles. | ||
* `--skip_install` - Skip installation of new provisioning profiles | ||
* `--skip_fetch_profiles` - Skips the verification of existing profiles which is useful if you have thousands of profiles | ||
##TODO | ||
* Allow configuration of team id, team name, and specification of the default certificate to use | ||
* Integrate the rest of the fastlane tools | ||
## Thanks | ||
* [Jason Kneen](https://github.com/jasonkneen) for creating some awesome CLI tools from which I'm basing this one | ||
## License | ||
<pre> | ||
Copyright 2015 Uriel Lizama | ||
Licensed 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://www.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. | ||
</pre> |
Sorry, the diff of this file is not supported yet
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
10713
85