0.2.0 • Published 10 years ago

atom-shell-pull v0.2.0

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

atom-shell-pull

Download the atom-shell for multiple platforms. Useful for build scripts.

Made with :heart: by Nathan McCallum under the MIT license!

Installation

npm install atom-shell-pull --save-dev

Usage

var AtomShellPull = require('atom-shell-pull');

var pull = new AtomShellPull({
    outputDir : 'downloads',
     // Available options are 'linux', 'win32' and 'darwin'
    platforms : ['linux', 'win32'],
    // Weather to download ia32 or x64 - or both.
    bits : [32, 64]
});

pull.prepare(function (start) {
    start();
});

Changes

###0.2.0 (Unreleased)

  • Can now download 32 or 64 bit binaries - or both.
  • Documentation fixes.

###0.1.0 (2014-07-13)

  • Started the changes log.
  • Implemented extracting of the downloaded zip files.
  • Remove some unnecessary dependencies and variables.

###0.0.1 (2014-07-12)

  • Initial version. :octocat: