1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

intercept entry point

This commit is contained in:
Rokt33r
2015-11-24 04:16:43 +09:00
parent e5a2bfbcbd
commit e4f39d2b6a
3 changed files with 9 additions and 2 deletions

6
index.js Normal file
View File

@@ -0,0 +1,6 @@
var argv = process.argv.slice(1)
if (argv.some(arg => arg.match(/--finder/))) {
require('./finder.js')
} else {
require('./main.js')
}