├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example ├── .gitignore ├── gulpfile.js └── src │ ├── index.html │ ├── main.js │ └── package.json ├── gulpfile.js ├── index.js ├── lib └── index.js ├── package.json ├── src └── index.coffee └── test └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | node_modules 3 | test 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | */ 2 | !src/ 3 | !gulpfile.js 4 | -------------------------------------------------------------------------------- /example/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/example/gulpfile.js -------------------------------------------------------------------------------- /example/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/example/src/index.html -------------------------------------------------------------------------------- /example/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/example/src/main.js -------------------------------------------------------------------------------- /example/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/example/src/package.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib'); 3 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/package.json -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/src/index.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xeodou/gulp-atom/HEAD/test/mocha.opts --------------------------------------------------------------------------------