Skip to content

v2.7.0

Latest
Compare
Choose a tag to compare
@luqmanoop luqmanoop released this 24 Feb 12:44
· 4 commits to master since this release

Add option to avoid comments and emptyLines in env before sync

configure sync-dotenv in your package.json

{
 "scripts": {
   ...
 },
 "sync-dotenv": {
  "comments": false, // comments in .env will not be synced
  "emptyLines": true, // empty lines in .env will be synced
 }
}

Thanks @danieldspx for contributing