Coder Social home page Coder Social logo

Comments (3)

marionebl avatar marionebl commented on May 28, 2024

Alternatively we could in-source the loader, what's your take @danieldelcore ?

from extract-react-types.

danieldelcore avatar danieldelcore commented on May 28, 2024

Hey @marionebl 👋

Remove the direct access and expose config keys instead

Can you elaborate on this a bit? I'm not sure I understand 🤔

I agree that this condition could probably be moved out of this repo and toggled on/off however the user requires.

!['staging', 'production'].includes(process.env.WEBSITE_ENV) && !process.env.FORCE_EXTRACT_REACT_TYPES

Is there a nice way to do this in webpack? I guess by providing different configs for different environments 🤔

from extract-react-types.

marionebl avatar marionebl commented on May 28, 2024

Is there a nice way to do this in webpack? I guess by providing different configs for different environments 🤔

Our own usage is mostly inline-loader requires, e.g.

require('!!extract-react-types!./Button.tsx');

Unfortunately there is no straightforward way to have user-configurable defaults for those - the conventional way to pass options in is query parameter 😬

require('!!extract-react-types?a=b!./Button.tsx');

In our case we could use the resolveLoader config to alias extract-react-types-loader to the noop branch, e.g.

    resolveLoader: {
      alias: opts.extractReactTypes ? undefined : {
        'extract-react-types-loader': require.resolve('./noop-extract-react-types-loader'),
      },
    },

The npm module could make this slightly nicer by providing a noop entry point:

    resolveLoader: {
      alias: opts.extractReactTypes ? undefined : {
        'extract-react-types-loader': require.resolve('extract-react-types-loader/noop'),
      },
    },

from extract-react-types.

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.