gulp-atom-downloader
v0.2.1
Published
A gulp.js plugin that downloads Atom
Downloads
9
Readme
gulp-atom-downloader
Usage
Add
gulp-atom-downloader
todevDependencies
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
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`