This commit is contained in:
Felix Rieseberg 2017-11-10 14:58:21 -08:00
Π ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒ 9291ab95dd
ΠšΠΎΠΌΠΌΠΈΡ‚ ae960027f2
1 ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ²: 9 Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠΉ ΠΈ 2 ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠΉ

ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ„Π°ΠΉΠ»

@ -34,6 +34,9 @@ for (let i = 0; i < argv.length; i++) {
} else if (argv[i] === '--require' || argv[i] === '-r') {
option.modules.push(argv[++i])
continue
} else if (argv[i] === '--abi' || argv[i] === '-a') {
option.abi = true
continue
} else if (argv[i][0] === '-') {
continue
} else {
@ -328,6 +331,9 @@ if (option.file && !option.webdriver) {
} else if (option.version) {
console.log('v' + process.versions.electron)
process.exit(0)
} else if (option.abi) {
console.log(process.versions.modules)
process.exit(0)
} else if (option.default) {
const indexPath = path.join(__dirname, '/index.html')
loadApplicationByUrl(`file://${indexPath}`)
@ -348,8 +354,9 @@ if (option.file && !option.webdriver) {
Options:
-d, --default Run the default bundled Electron app.
-i, --interactive Open a REPL to the main process.
-r, --require Module to preload (option can be repeated)
-v, --version Print the version.`
-r, --require Module to preload (option can be repeated).
-v, --version Print the version.
-a, --abi Print the Node ABI version.`
console.log(welcomeMessage)
const indexPath = path.join(__dirname, '/index.html')