# grunt-xamarininsightsdysmupload

> Quick way to zip and upload your iOS DYSM to Xamarin Insights

Latest version **1.0.0** (published 2015-08-30) · 0 weekly downloads

## Install

```sh
npm install grunt-xamarininsightsdysmupload
pnpm add grunt-xamarininsightsdysmupload
yarn add grunt-xamarininsightsdysmupload
bun add grunt-xamarininsightsdysmupload
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2015-08-30 |
| First published | 2015-08-11 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.8.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | robert.waggott |
| Maintainers | robert-waggott |
| Keywords | gruntplugin, xamarin, insights, dysm, ios, mobile |

## Links

- npm: https://www.npmjs.com/package/grunt-xamarininsightsdysmupload
- Repository: https://github.com/robert-waggott/XamarinInsightsDYSMUploadGruntPlugin
- Issues: https://github.com/robert-waggott/XamarinInsightsDYSMUploadGruntPlugin/issues
- npm.io page: https://npm.io/package/grunt-xamarininsightsdysmupload

## Dependencies (1)

- [exec-sync](https://npm.io/package/exec-sync.md) ^0.1.6

## Recent versions

- 1.0.0 (latest) — 2015-08-30
- 0.1.4 — 2015-08-19
- 0.1.3 — 2015-08-17
- 0.1.2 — 2015-08-17
- 0.1.1 — 2015-08-12
- 0.1.0 — 2015-08-11

## README

# grunt-xamarininsightsdysmupload

> Quick way to zip and upload your iOS DYSM to Xamarin Insights

Inspired by a [blog post](http://thetechnologystudio.co.uk/blog/) and [gist](https://gist.github.com/robert-waggott/528238a7fb2893db97fd).

## Getting Started
This plugin requires Grunt `~0.4.5`

If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

```shell
npm install grunt-xamarininsightsdysmupload --save-dev
```

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

```js
grunt.loadNpmTasks('grunt-xamarininsightsdysmupload');
```

## The "XamarinInsightsDYSMUpload" task

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

```js
grunt.initConfig({
  XamarinInsightsDYSMUpload: {
    dysm: "",
    apiKey: "abc"
  }
});
```

### Options

#### apiKey
* Type: `String`
* Default value: `''`

Your Xamarin Insights API key. 

#### dysm
* Type: `String`
* Default value: `''`

The path to your dysm. 

### Usage Examples

```js
grunt.initConfig({
  XamarinInsightsDYSMUpload: {
    dysm: "/foo/bar/abc.dYSM",
    apiKey: "abc"
  }
});
```

---
_Source: https://npm.io/package/grunt-xamarininsightsdysmupload · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
