@dotenvx/dotenvx 0.10.1 → 0.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -359,7 +359,7 @@ More examples
359
359
  web: dotenvx run -- node index.js
360
360
  ```
361
361
 
362
- <sub><a href="https://github.com/dotenvx/heroku-buildpack-dotenvx">buildpack docs</a></sub>
362
+ [see heroku guide](https://dotenvx.com/docs/platforms/heroku)
363
363
 
364
364
  </details>
365
365
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.10.1",
2
+ "version": "0.10.2",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a better dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -90,7 +90,7 @@ async function run () {
90
90
  switch (e.code) {
91
91
  // missing .env
92
92
  case 'ENOENT':
93
- logger.warnv(`missing .env file (${filepath})`)
93
+ logger.warnv(`missing ${envFilepath} file (${filepath})`)
94
94
  logger.help(`? in development: add one with [echo "HELLO=World" > .env] and re-run [dotenvx run -- ${commandArgs.join(' ')}]`)
95
95
  logger.help('? for production: set [DOTENV_KEY] on your server and re-deploy')
96
96
  break