UNPKG

envsaurus

Version:

ENVSAURUS is a zero-dependency CLI + library that turns your .env.example into a fully typed config file. It validates environment variables at runtime, fails fast in CI, and exports a safe CONFIG object for Node/TypeScript apps. Catch missing or invalid

13 lines (12 loc) 716 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.generateConfigTs = exports.parseExampleFile = exports.parseExampleContent = void 0; exports.version = version; var parser_1 = require("./parser"); Object.defineProperty(exports, "parseExampleContent", { enumerable: true, get: function () { return parser_1.parseExampleContent; } }); Object.defineProperty(exports, "parseExampleFile", { enumerable: true, get: function () { return parser_1.parseExampleFile; } }); var generator_1 = require("./generator"); Object.defineProperty(exports, "generateConfigTs", { enumerable: true, get: function () { return generator_1.generateConfigTs; } }); function version() { return '0.0.0'; }