# gulp-download-fire-shell-deprecated **Repository Path**: mirrors_cocos-creator/gulp-download-fire-shell-deprecated ## Basic Information - **Project Name**: gulp-download-fire-shell-deprecated - **Description**: gulp plugin to download atom-shell - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-19 - **Last Updated**: 2025-12-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # [gulp](http://gulpjs.com)-download-fire-shell > Download [atom-shell](http://github.com/fireball-x/atom-shell) binary distribution **Port from [grunt-download-atom-shell](http://github.com/atom/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: ```sh 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 ```javascript 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']); ```