├── .gitignore ├── .npmignore ├── README.md ├── azure-pipelines.yml ├── package.json ├── src ├── darwin.js ├── download.js ├── index.js ├── linux.js └── win32.js └── test ├── download.test.js ├── package.test.js ├── resources └── myapp.icns └── src ├── folder └── dummy.js ├── main.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/package.json -------------------------------------------------------------------------------- /src/darwin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/src/darwin.js -------------------------------------------------------------------------------- /src/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/src/download.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/src/index.js -------------------------------------------------------------------------------- /src/linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/src/linux.js -------------------------------------------------------------------------------- /src/win32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/src/win32.js -------------------------------------------------------------------------------- /test/download.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/test/download.test.js -------------------------------------------------------------------------------- /test/package.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/test/package.test.js -------------------------------------------------------------------------------- /test/resources/myapp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/test/resources/myapp.icns -------------------------------------------------------------------------------- /test/src/folder/dummy.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/main.js: -------------------------------------------------------------------------------- 1 | // do some stuff -------------------------------------------------------------------------------- /test/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaomoreno/gulp-atom-electron/HEAD/test/src/package.json --------------------------------------------------------------------------------