Giter Site home page Giter Site logo

Comments (4)

Jiansen avatar Jiansen commented on April 20, 2024

@gaearon , if I understood your concerns correctly, the frustrating part is that code like the following will become more difficult to maintain with the increased number of commands in later versions.

var relativePath = isInNodeModules ? '../../..' : '..';
if (process.argv[2] === '--debug-template') {
  relativePath = '../template';
}

If so, with match-js or a similar approach, I should be able to refactor the code similar to the following, though not exactly in your proposed form

relativePath = match( env )(
  CASE(REPO, ...),
  CASE(DEPENDENCY, ...),
  CASE(EJECTED, ...),
  CASE(otherwise, ...)
);

where env could be process.argv or other value that represents the execution environment.

Currently, I see that --debug-template and --smoke-test are both set at process.argv[2], and there is no check for EJECTED because scripts/eject.js is the only involved script.

To help me understand your problem correctly, could you, from a user's perspective, list some test commands that set flag(s)?

In my forked repo, I will test my ideas. I hope that we can move towards a solution that you wanted.

Cheers

from create-react-app.

gaearon avatar gaearon commented on April 20, 2024

These flags are all internal and we don’t want to expose this code for the user. They are only useful for testing and local development of create-react-app itself. So if statements are not a problem and we don’t need to refactor them. What we need is a way to cut some code after ejecting.

from create-react-app.

Jiansen avatar Jiansen commented on April 20, 2024

@gaearon ,

The above change deletes dead code on ejecting; However, this does not prevent users from using npm start --debug-template before react-scripts is ejected. At lease, we don't expose the flag to general users.

I will think if we could hide the flag and cut off the code on the time of building react-scripts.

If you think the current progress is OK, I will do some tests and create a PR.

from create-react-app.

gaearon avatar gaearon commented on April 20, 2024

This was in #257.

from create-react-app.

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.