You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-27 23:28:38 +02:00
All: Use Lerna to manage monorepo
This commit is contained in:
11
packages/lib/envFromArgs.js
Normal file
11
packages/lib/envFromArgs.js
Normal file
@ -0,0 +1,11 @@
|
||||
// Flags are parsed properly in BaseApplication, however it's better to have
|
||||
// the env as early as possible to enable debugging capabilities.
|
||||
function envFromArgs(args) {
|
||||
if (!args) return 'prod';
|
||||
const envIndex = args.indexOf('--env');
|
||||
const devIndex = args.indexOf('dev');
|
||||
if (envIndex === devIndex - 1) return 'dev';
|
||||
return 'prod';
|
||||
}
|
||||
|
||||
module.exports = envFromArgs;
|
Reference in New Issue
Block a user