14 lines
275 B
JavaScript
Raw Permalink Normal View History

2025-06-30 09:38:03 +08:00
(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)
})()