0.2.1 • Published 9 years ago

gulp-atom-downloader v0.2.1

Weekly downloads
179
License
MIT
Repository
github
Last release
9 years ago

gulp-atom-downloader

Usage

  1. Add gulp-atom-downloader to devDependencies
  2. Download Atom, get the executable path, and launch Atom:

    var atomPaths = require('gulp-atom-downloader');
    
    atomPaths().then(function(atomPaths) {
      return require('child_process').spawn(atomPaths.atom);
    });

The atomExePath() function takes an optional config parameter object. Defaults:

config.platform = process.platform;
config.atomDir = './.atom';
config.binDir = path.join(config.atomDir, 'bin');

Build Status

Linux Build Windows Build

Dev Info

Run the tests:

./gulp test

Release:

git tag v0.0.2
git push --tags
npm publish
# bump the version in `package.json` and `README.md`
0.2.1

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago