npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

xcode-build-tools

v4.18.5

Published

A few bash scripts to help with building ios apps

Downloads

193

Readme

Xcode build tools

A few scripts for our CI server

Version License Build Status

Install with npm install xcode-build-tools

add-keys

Usage: add-keys [options]

Creates a new Keychain and sets as the default. Imports keys and certificates to it and enables build tool access

WARNING: Changes your default keychain

Options:

-h, --help                         output usage information
-V, --version                      output the version number
-k, --keychain-name <name>         Keychain Name - default APP_NAME
--timeout <timeout>                Keychain password timeout - default 1 hour
--apple-cert <cert>                Apple WWDR certificate - default download from apple
--app-certs <cert>                 List of app sigining certificates - default APP_CER
--app-keys <key>                   List app sigining keys - default APP_KEY
--app-key-passwords <pass>         App sigining key password or list of passwords - default KEY_PASSWORD
--provisioning-profiles <profile>  Provisioning profiles - default PROVISIONING_PROFILE
--codesign <programs>              Programs that should be able to use the certificates - default codesign, productbuild

remove-keys

Usage: remove-keys [options]

Delete a keychain and provisioning profiles

Options:

-h, --help                         output usage information
-V, --version                      output the version number
-k, --keychain-name <name>         Keychain Name - default APP_NAME
--provisioning-profiles <profile>  Provisioning profiles - default PROVISIONING_PROFILE

create-ipa

Usage: create-ipa [options]

Create an .ipa file from an .app

Options:

-h, --help                        output usage information
-V, --version                     output the version number
-k, --keychain-name <name>        Keychain Name - default APP_NAME
--developer-name <name>           Developer name to use - CODE_SIGN_IDENTITY
--ipa <name>                      Ipa file to create - default build/Release-iphoneos/$APP_NAME.ipa
--app <name>                      App file to convert - default build/Release-iphoneos/$APP_NAME.app
--provisioning-profile <profile>  Provisioning profile - default PROVISIONING_PROFILE

upload-ipa

Usage: upload-ipa [options]

Upload ipa file to testbuild.rocks and (optional) send a link to slack

Options:

-h, --help                     output usage information
-V, --version                  output the version number
-p, --project-id <id>          Project Id - default PROJECT_ID
--server <name>                Alternative server address
--ipa <name>                   Ipa file to upload - default build/Release-iphoneos/$APP_NAME.ipa
--key <key>                    Test build rocks key - default TEST_BUILD_ROCKS_KEY
-s, --slack-hook <hook>        Slack Hook - default SLACK_URL
-c, --slack-channel <channel>  Slack Channel - default SLACK_CHANNEL
-m, --message <message>        Test build rocks message

upload-apk

Usage: upload-apk [options]

Upload apk file to testbuild.rocks and (optional) send a link to slack

Options:

-h, --help                     output usage information
-V, --version                  output the version number
-p, --project-id <id>          Project Id - default PROJECT_ID
--apk <name>                   Apk file to upload - default app/build/outputs/apk/app-release.apk
--key <key>                    Test build rocks key - defaul tTEST_BUILD_ROCKS_KEY
-s, --slack-hook <hook>        Slack Hook - default SLACK_URL
-c, --slack-channel <channel>  Slack Channel - default SLACK_CHANNEL
-m, --message <message>        Test build rocks message

create-release

Usage: create-release [options]

Create a new release on GitLab

Options:

-h, --help           output usage information
-V, --version        output the version number
--server <server>    GitLab server
--token <token>      Api key
--project-id <id>    Project Id
--tag-name <tag>     Tag name
--ref <ref>          Git ref
-n, --notes <notes>  Release notes

Summary of env vars

  • APP_NAME - Name of the app to build eg "Kidslox"

To install keys

  • PROVISIONING_PROFILE - Location of provisioning profile
  • APP_CER - Location of your signing cert
  • APP_KEY - Location of the matching key
  • KEY_PASSWORD - Password to the signing key
  • CODE_SIGN_IDENTITY - Name of the developer eg 'iPhone Distribution: Developer'

Upload builds

  • TEST_BUILD_ROCKS_KEY - API key for testbuild.rocks to upload
  • PROJECT_ID - Project id for testbuild.rocks

Get slack notifications

  • SLACK_URL - Slack hook to notify of upload (or SLACK_HOOK)
  • SLACK_CHANNEL - Override the hook channel

Create release

  • GITLAB_API_TOKEN - Token that gives access to the GitLab API to create a new release

GitLab CI Variables used

  • CI_PROJECT_ID - GitLab project id
  • CI_PROJECT_URL - GitLab project url
  • CI_COMMIT_SHA - Current git commit
  • CI_JOB_ID - Current job number
  • CI_COMMIT_REF_SLUG - Current branch name (url friendly)