generated from sindresorhus/electron-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
89 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
'use strict'; | ||
|
||
const path = require('path'); | ||
const {is} = require('electron-util'); | ||
const https = require('https'); | ||
const fs = require('fs'); | ||
const async = require('async'); | ||
const axios = require('axios').default; | ||
const now = require('performance-now'); | ||
|
||
const Store = require('electron-store'); | ||
const store = new Store(); | ||
|
||
const exec = require('./exec'); | ||
const log = require('./logger'); | ||
|
||
let scripts_path = path.join(store.get("app.resources_path"), "setup"); | ||
|
||
|
||
function check_app_install() {} | ||
function check_assets() {} | ||
|
||
function install_assets() {} | ||
function install_rportable() {} | ||
function install_packages() {} | ||
|
||
|
||
|
||
module.exports = { | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters