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

grunt-hockeyapp-upload

v0.0.2

Published

Grunt plugin for uploading apps via the hockeyapp rest api.

Downloads

12

Readme

grunt-hockeyapp-upload

Grunt plugin for uploading apps via the hockeyapp rest api.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-hockeyapp-upload --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-hockeyapp-upload');

The "hockeyapp" task

Overview

In your project's Gruntfile, add a section named hockeyapp to the data object passed into grunt.initConfig().

grunt.initConfig({
  hockeyapp: {
    options: {
      resource: '1234567890abcdef1234567890abcdef/app_versions/1',
      token: 'MY_HOCKEYAPP_TOKEN'
    },
    ios: {
      options: {
        notify: 'testers'
      },
      file: 'app.ipa',
      mapping: 'app.dSYM.zip'
    },
    android: {
      file: 'app.apk',
      mapping: 'mapping.txt'
    }
  },
});

Options

options.resource

Type String Required

The resource you want to update via the API call:

  • upload: Upload an .ipa, .apk, or .zip file to create a new app. If an app with the same bundle identifier or package name and the same release type already exists, the uploaded file is assigned to this existing app.
  • APP_ID/app_versions/upload: Upload an .ipa, .apk, or .zip file to create a new version for your app.
  • APP_ID/app_versions/ID: Update the attributes of an existing version and replace an existing version.

options.token

Type String Required

Hockey App Token to authenticate yourself with the API.

options.downloadable

Type Boolean Optional

Available values:

  • true to not allow users to download the version
  • false to make the version available for download

Download status (can only be set with full-access tokens)

options.notes

Type String Optional

Release notes as Textile or Markdown

options.notesType

Type String Optional

Available values:

  • 'textile' for Textile
  • 'markdown' for Markdown

Type of release notes

options.notify

Type Boolean Optional

Available values:

  • 'testers' for all testers
  • 'testers can install' for all testers that can install this app
  • 'all' notify all testers

Notify testers (can only be set with full-access tokens)

options.tags

Type String or Array<String> Optional

Restrict download to comma-separated list of tags

options.teams

Type String or Array<String> Optional

Restrict download to comma-separated list of team IDs

options.users

Type String or Array<String> Optional

Restrict download to comma-separated list of user IDs.

options.mandatory

Type String Optional

Available values:

  • mandatory
  • not mandatory

Set version as mandatory.

options.releaseType

Type String Optional

Available values:

  • aplpha
  • beta
  • store
  • enterprise

Set the release type of the app.

options.private

Type Boolean Default value false Optional

Set to true to enable the private download page.

options.commitSha

Type String Optional

Set to the git commit sha for this build.

options.buildServerUrl

Type String Optional

Set to the URL of the build job on your build server

options.repositoryUrl

Type String Optional

Set to your source repository.

Target parameters

target.file

Type String Required

File path of the ipa for iOS, .app.zip for OS X, or .apk file for Android.

target.mapping

Type String Optional

Filepath of the .dSYM.zip file (iOS and OS X) or mapping.txt (Android); note that the extension has to be .dsym.zip (case-insensitive) for iOS and OS X and the file name has to be mapping.txt for Android.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)