@@ -8,19 +8,14 @@ const version = packageJson.version
88
99// Array of tips to display randomly
1010const TIPS = [
11- '🔐 encrypt with Dotenvx: https://dotenvx.com' ,
12- '🔐 prevent committing .env to code: https://dotenvx.com/precommit' ,
13- '🔐 prevent building .env in docker: https://dotenvx.com/prebuild' ,
14- '🤖 agentic secret storage: https://dotenvx.com/as2' ,
15- '⚡️ secrets for agents: https://dotenvx.com/as2' ,
16- '🛡️ auth for agents: https://vestauth.com' ,
17- '🛠️ run anywhere with `dotenvx run -- yourcommand`' ,
18- '⚙️ specify custom .env file path with { path: \'/custom/path/.env\' }' ,
19- '⚙️ enable debug logging with { debug: true }' ,
20- '⚙️ override existing env vars with { override: true }' ,
21- '⚙️ suppress all logs with { quiet: true }' ,
22- '⚙️ write to custom object with { processEnv: myObject }' ,
23- '⚙️ load multiple .env files with { path: [\'.env.local\', \'.env\'] }'
11+ '◈ encrypted .env [www.dotenvx.com]' ,
12+ '◈ secrets for agents [www.dotenvx.com]' ,
13+ '⌁ auth for agents [www.vestauth.com]' ,
14+ '⌘ custom filepath { path: \'/custom/path/.env\' }' ,
15+ '⌘ enable debugging { debug: true }' ,
16+ '⌘ override existing { override: true }' ,
17+ '⌘ suppress logs { quiet: true }' ,
18+ '⌘ multiple files { path: [\'.env.local\', \'.env\'] }'
2419]
2520
2621// Get a random tip from the tips array
@@ -314,7 +309,7 @@ function configDotenv (options) {
314309 }
315310 }
316311
317- _log ( `injecting env (${ keysCount } ) from ${ shortPaths . join ( ',' ) } ${ dim ( `-- tip: ${ _getRandomTip ( ) } ` ) } ` )
312+ _log ( `injecting env (${ keysCount } ) from ${ shortPaths . join ( ',' ) } ${ dim ( `// tip: ${ _getRandomTip ( ) } ` ) } ` )
318313 }
319314
320315 if ( lastError ) {
0 commit comments