This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const chokidar = require('chokidar'); | |
| const envFilePath = './.env'; | |
| const exampleFilePath = './.env.example'; | |
| /** | |
| * Reads the contents of the .env file and returns an array of variable names. | |
| * @returns A set of variable names from the .env file. | |
| */ |