Skip to content

Commit 19e5ad9

Browse files
committed
adjust clickable tip
1 parent 4186757 commit 19e5ad9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/main.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ const version = packageJson.version
88

99
// Array of tips to display randomly
1010
const TIPS = [
11-
'🔐 encrypt with dotenvx: https://dotenvx.com',
11+
'🔐 encrypt with Dotenvx: https://dotenvx.com',
1212
'🔐 prevent committing .env to code: https://dotenvx.com/precommit',
1313
'🔐 prevent building .env in docker: https://dotenvx.com/prebuild',
14-
'🛠️ run anywhere with `dotenvx run -- yourcommand`',
14+
'📡 observe env with Radar: https://dotenvx.com/radar',
15+
'📡 auto-backup env with Radar: https://dotenvx.com/radar',
16+
'📡 version env with Radar: https://dotenvx.com/radar',
17+
'🛠️ run anywhere with `dotenvx run -- yourcommand`',
1518
'⚙️ specify custom .env file path with { path: \'/custom/path/.env\' }',
1619
'⚙️ enable debug logging with { debug: true }',
1720
'⚙️ override existing env vars with { override: true }',
@@ -311,7 +314,7 @@ function configDotenv (options) {
311314
}
312315
}
313316

314-
_log(`injecting env (${keysCount}) from ${shortPaths.join(',')} ${dim(`(tip: ${_getRandomTip()})`)}`)
317+
_log(`injecting env (${keysCount}) from ${shortPaths.join(',')} ${dim(`-- tip: ${_getRandomTip()}`)}`)
315318
}
316319

317320
if (lastError) {

0 commit comments

Comments
 (0)