https://github.com/group6tech/grunt-squirrel-releasify
Prepare NuGet packages for release via Squirrel
https://github.com/group6tech/grunt-squirrel-releasify
Last synced: 5 months ago
JSON representation
Prepare NuGet packages for release via Squirrel
- Host: GitHub
- URL: https://github.com/group6tech/grunt-squirrel-releasify
- Owner: group6tech
- License: mit
- Created: 2015-03-22T21:45:02.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-21T19:43:10.000Z (over 10 years ago)
- Last Synced: 2025-09-16T12:24:53.702Z (9 months ago)
- Language: JavaScript
- Size: 1.35 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Squirrel Releasify Grunt Plugin
Grunt plugin that releasifies [NuGet](https://www.nuget.org/) packages for [Squirrel](https://github.com/Squirrel/Squirrel.Windows) updates.
## Installing
```
npm install --save-dev grunt-squirrel-releasify
```
## Configuring
In your `Gruntfile.js` add the following:
```
grunt.loadNpmTasks('grunt-squirrel-releasify')
```
Then configure a source NuGet package and an output folder as the task:
```
'squirrel-releasify': {
src: '/path/to/app.nupkg',
dest: '/pato/to/output'
}
```
Then run `grunt squirrel-releasify` and you will have a `RELEASES`, `.nupkg`, and a `.exe` in the `dest` folder.
## Options
| Config Name | Required | Description |
| --------------- | -------- | ----------- |
| `src` | Yes | The folder path of your NuGet package |
| `dest` | Yes | The folder path to create the `.exe` installer in |
| `loadingGif` | No | The local path to a `.gif` file to display during install |