├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── node.js.yml ├── .gitignore ├── .parcelrc ├── electron.png ├── forge.config.js ├── package.json ├── readme.md ├── renovate.json ├── src ├── electron-main.js ├── electron-preload.js ├── icon.png ├── index.css ├── index.html ├── index.ts └── tsconfig.json ├── test.spec.js └── test.spec.js-snapshots ├── expected-start-linux.png └── expected-start-win32.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.gitignore -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/.parcelrc -------------------------------------------------------------------------------- /electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/electron.png -------------------------------------------------------------------------------- /forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/forge.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/renovate.json -------------------------------------------------------------------------------- /src/electron-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/src/electron-main.js -------------------------------------------------------------------------------- /src/electron-preload.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/test.spec.js -------------------------------------------------------------------------------- /test.spec.js-snapshots/expected-start-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/test.spec.js-snapshots/expected-start-linux.png -------------------------------------------------------------------------------- /test.spec.js-snapshots/expected-start-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excaliburjs/template-electron/HEAD/test.spec.js-snapshots/expected-start-win32.png --------------------------------------------------------------------------------