0.1.3 • Published 10 years ago

gulp-download-fire-shell v0.1.3

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

gulp-download-fire-shell

Download atom-shell binary distribution

Port from grunt-download-atom-shell

Forked Version Instruction

In this forked version, we check if a cached version (in os temp folder) of Fireball exsited by checking 'Fireball.app' instead of version file.

Installation

Install gulp plugin package:

npm install --save-dev gulp-download-atom-shell

Usage

Options

  • version - Required The version of atom-shell you want to download.
  • outputDir - Required Where to put the downloaded atom-shell.
  • downloadDir - Where to find and save cached downloaded atom-shell.
  • symbols - Download debugging symbols instead of binaries, default to false.
  • rebuild - Whether to rebuild native modules after atom-shell is downloaded.
  • apm - The path to apm.

Example

gulpfile.js

var gulp = require('gulp');
var downloadatomshell = require('gulp-download-fire-shell');

gulp.task('downloadatomshell', function(cb){
	downloadatomshell({
      version: '0.12.5',
      outputDir: 'binaries'
    }, cb);
});

gulp.task('default', ['downloadatomshell']);
0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago