GithubHelp home page GithubHelp logo

Comments (4)

helenb avatar helenb commented on May 27, 2024 1

Yes, thank you!

from learn-rollup.

jlengstorf avatar jlengstorf commented on May 27, 2024

In the tutorial config, there are two places where we exclude the node_modules directory:

  1. The babel plugin — we do this to prevent Babel from attempting to transpile external code, which would most likely cause problems.
  2. The replace plugin — we do this to prevent altering external code by replacing strings, which is a recipe for chaos. :)

I'm going to close this, but feel free to follow up with any additional questions.

Thanks!

from learn-rollup.

helenb avatar helenb commented on May 27, 2024

Thanks - I think I wasn't quite clear in my question. Why would babel try to compile stuff in the node_modules directory when we're telling it to look only at 'src/scripts/main.js as a starting point:

entry: 'src/scripts/main.js',

I expected that this meant the rollup babel plugin would only be compiling stuff referenced in that main.js file - and therefore wouldn't be looking at node_modues which are not anywhere on that path.

I'm guessing I must misunderstand what that entry point means though, as I can see from the example with debug that it can end up compiling the content in node_modules.

from learn-rollup.

jlengstorf avatar jlengstorf commented on May 27, 2024

Oh, I see what you're asking.

So, the way Rollup works — as well as other bundlers — is to combine all referenced code into a single file. So in the case of this tutorial, we include debug, which is a Node module. As it's pulled through Rollup, the plugins execute on all the included code unless we explicitly ignore it.

Because of this, if we don't ignore node_modules and other paths where third-party code is stored, Rollup will try to process code that we should assume already went through processing, and that causes problems. By ignoring it, we process only the code we wrote, and not the code we're importing to make our lives easier.

Does that make sense?

from learn-rollup.

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.