Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

motdotla

motdotla pushed 2 commits to main dotenvx/dotenvx
  • fix(SetOptions): add missing encrypt field in type definition 842af13
  • Merge pull request #519 from sharunkumar/patch-1 fix(SetOptions): add missing encrypt field in type definition dcbdcb4

View on GitHub

motdotla created a comment on a pull request on dotenvx/dotenvx
thank you

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
ok, fixed. with one caveat: * the newlines are inlined to an empty space this is a limitation of vscode's decorations that I can't control. There's not a way to display actual newlines for decora...

View on GitHub

motdotla closed an issue on dotenvx/dotenvx
[Feature Request] VSCode Plugin
It would be a huge DX improvement if there was a VSCode extension that decrypted the .env file when you're viewing it I see this: https://github.com/vinnymac/dotenvx-decrypt-vscode which is grea...
motdotla created a comment on an issue on dotenv-org/dotenv-vscode
this has been released as its own extension. I think over time we will merge them both together. dotenvx is the path forward. https://dotenvx.com/vscode-extension

View on GitHub

motdotla closed an issue on dotenv-org/dotenv-vscode
Add support for dotenvx cli and future `dotenvx pro` features
See https://github.com/dotenvx/dotenvx/issues/259 regarding `dotenvx pro` and https://github.com/dotenvx/dotenvx#what-happened-to-the-envvault-file for context.
motdotla pushed 1 commit to main dotenvx/dotenvx-vscode-demo

View on GitHub

motdotla pushed 1 commit to main dotenvx/dotenvx-vscode-demo

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
Ah, thanks for letting me know. Working on the fix.

View on GitHub

motdotla reopened an issue on dotenvx/dotenvx
[Feature Request] VSCode Plugin
It would be a huge DX improvement if there was a VSCode extension that decrypted the .env file when you're viewing it I see this: https://github.com/vinnymac/dotenvx-decrypt-vscode which is grea...
motdotla created a comment on an issue on dotenvx/dotenvx
I see your problem. You haven't installed `curl`! Docker unfortunately will not warn you of this - it will just continue on. Add ``` apt-get install -y --no-install-recommends curl \ ``` to you...

View on GitHub

motdotla closed an issue on dotenvx/dotenvx
Error: Cannot find module '/app/dotenvx' when using dotenvx in Docker environment
I'm encountering an issue when trying to execute a Dockerized script that uses the dotenvx package. The script fails to locate the module, resulting in a MODULE_NOT_FOUND error. Below are the detai...
motdotla created a comment on an issue on dotenvx/dotenvx
i can't reproduce this @stilyng94 are you installing dotenvx both in your package.json AND as a binary via `curl -sfS https://dotenvx.sh/install.sh | sh` ?

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
releasing as `1.34.0` https://github.com/dotenvx/dotenvx/blob/main/CHANGELOG.md#1340

View on GitHub

motdotla closed an issue on dotenvx/dotenvx
calling set(NAME, VALUE, {path}) does not write output to env files
On OSX, dotenvx 1.29.0, node 22. I don't know if this is intended behavior (the documentation is a little light), but when calling `set(NAME, VALUE, {path: "path/to/my/env"})`, the return indicate...
motdotla pushed 1 commit to main dotenvx/dotenvx

View on GitHub

motdotla created a tag on dotenvx/dotenvx

v1.34.0 - a better dotenv–from the creator of `dotenv`

motdotla deleted a branch dotenvx/dotenvx

set-should-write

motdotla pushed 4 commits to main dotenvx/dotenvx
  • `set` should write e15b153
  • add full test-coverage of main.set 6901d3a
  • changelog 🪵 81c9013
  • Merge pull request #517 from dotenvx/set-should-write `main.set` should write 15029b5

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
@Azuka a heads up, the newest version `1.34.0` now writes to the file for you: https://github.com/dotenvx/dotenvx/pull/517

View on GitHub

motdotla pushed 1 commit to set-should-write dotenvx/dotenvx

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
First, update to `[email protected]` or greater. We patched that issue there: https://github.com/dotenvx/dotenvx/blob/main/CHANGELOG.md#changed-8 As for sending `[[email protected]] injecting env*` to stde...

View on GitHub

motdotla closed an issue on dotenvx/dotenvx
Have "run" log to stderr instead of stdout
work-around: use --quiet Ideally, `dotenvx run -- echo 1 > out.txt` should only write the file value `1` to a file. Instead, out.txt contains the output from dotenvx and the value 1. Other comma...
motdotla opened a pull request on dotenvx/dotenvx
`set` should write
motdotla created a comment on an issue on dotenvx/dotenvx
some history: * i removed `set`: https://github.com/dotenvx/dotenvx/issues/481 * then brought it back: https://github.com/dotenvx/dotenvx/pull/492/files but in both cases it never fully wrote - t...

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
hmm, yeah, looks like `lib/main.js#set` only returns src (except it does write to .env.keys). This is likely an oversight on my part. Give me some time to dig in.

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
@nahtnam we have an official extension now. https://dotenvx.com/vscode-extension It's not quite as full featured yet as Vinny's but it sets the foundation for eventual team features via [pro](http...

View on GitHub

motdotla created a comment on an issue on dotenvx/dotenvx
This is because you are using node's new `--env-file` flag when using dotenvx this way. Here's the solution: ``` # replace --env-file with -f ./node_modules/.bin/dotenvx run --env-file .env -- yo...

View on GitHub

motdotla closed an issue on dotenvx/dotenvx
`--ignore=MISSING_ENV_FILE` is ignored when used with `--env-file`
```shell > npx dotenvx --version 1.33.0 > node --version v22.11.0 ``` When `dotenvx run` is pointed to an env file that does not exist, it always exists with an error code if the env file ...
Load more