mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 07:12:42 +08:00
14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
(function () {
|
|
const dotenvExpand = require('./lib/main').expand
|
|
|
|
const env = require('dotenv').config(
|
|
Object.assign(
|
|
{},
|
|
require('dotenv/lib/env-options'),
|
|
require('dotenv/lib/cli-options')(process.argv)
|
|
)
|
|
)
|
|
|
|
return dotenvExpand(env)
|
|
})()
|