Giter VIP home page Giter VIP logo

Comments (3)

entropitor avatar entropitor commented on July 1, 2024

@RamIdeas this is simply not possible because it's not dotenv-cli who evaluates too early but your shell before even passing this value to dotenv-cli, see also #31 (comment) for more information

what you can do is have 2 scripts

// package.json
{
  "scripts": {
    "echo:raw": "echo $VAR_NAME",
    "echo": "dotenv -- yarn echo:raw",
  }
}

from dotenv-cli.

RamIdeas avatar RamIdeas commented on July 1, 2024

I feel like I didn't explain myself clearly enough. I'm aware it's the shell that evaluates early.

My recommendation is to export the vars if no command is given. Notice the semicolon in the example on the last line?

from dotenv-cli.

entropitor avatar entropitor commented on July 1, 2024

Ah okay, that makes more sense.

However, I don't think dotenv can change the env values of the outer shell script, that seems like it would be dangerous security wise?

$ URL=example.com
$ bash -c 'echo $URL' # doesn't output google.com because wasn't exported
$ export URL=example.com
$ bash -c 'echo $URL' # does output goolge.com because it was exported
$ bash -c 'export URL=google.com'
$ echo $URL      # doesn't have google.com because child doesn't export to parent

I'd be happy to implement something if you can prove me wrong. I'd probably put it behind a feature flag then but for the rest it should be fine. I'm just not sure if it can be done.

from dotenv-cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.