remove newline and add deprecation warning
This commit is contained in:
parent
e8ec1a6ed4
commit
a45b1625fc
2 changed files with 6 additions and 2 deletions
|
@ -335,8 +335,10 @@ if (option.file && !option.webdriver) {
|
||||||
} else if (option.interactive) {
|
} else if (option.interactive) {
|
||||||
startRepl()
|
startRepl()
|
||||||
} else {
|
} else {
|
||||||
const welcomeMessage = `Electron ${process.versions.electron} - Build cross platform desktop apps with JavaScript, HTML, and CSS
|
const welcomeMessage = `
|
||||||
|
Deprecation Warning: To render the default app, the -d or --default flags will soon need to be used.
|
||||||
|
|
||||||
|
Electron ${process.versions.electron} - Build cross platform desktop apps with JavaScript, HTML, and CSS
|
||||||
Usage: electron [options] [path]
|
Usage: electron [options] [path]
|
||||||
|
|
||||||
A path to an Electron app may be specified. It must be one of the following:
|
A path to an Electron app may be specified. It must be one of the following:
|
||||||
|
@ -351,6 +353,9 @@ if (option.file && !option.webdriver) {
|
||||||
-i, --interactive Open a REPL to the main process.
|
-i, --interactive Open a REPL to the main process.
|
||||||
-r, --require Module to preload (option can be repeated)
|
-r, --require Module to preload (option can be repeated)
|
||||||
-v, --version Print the version.`
|
-v, --version Print the version.`
|
||||||
|
|
||||||
console.log(welcomeMessage)
|
console.log(welcomeMessage)
|
||||||
|
const indexPath = path.join(__dirname, '/index.html')
|
||||||
|
loadApplicationByUrl(`file://${indexPath}`)
|
||||||
process.exit(0)
|
process.exit(0)
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,5 +19,4 @@ document.querySelector('.electron-version').innerText = `Electron v${process.ver
|
||||||
document.querySelector('.chrome-version').innerText = `Chromium v${process.versions.chrome}`
|
document.querySelector('.chrome-version').innerText = `Chromium v${process.versions.chrome}`
|
||||||
document.querySelector('.node-version').innerText = `Node v${process.versions.node}`
|
document.querySelector('.node-version').innerText = `Node v${process.versions.node}`
|
||||||
document.querySelector('.v8-version').innerText = `v8 v${process.versions.v8}`
|
document.querySelector('.v8-version').innerText = `v8 v${process.versions.v8}`
|
||||||
|
|
||||||
document.querySelector('.command-example').innerText = `${electronPath} path-to-app`
|
document.querySelector('.command-example').innerText = `${electronPath} path-to-app`
|
||||||
|
|
Loading…
Reference in a new issue