Giter VIP home page Giter VIP logo

Comments (10)

eliperelman avatar eliperelman commented on June 12, 2024 2

Looking over your preset override, you can also use prepend for polyfill and avoid the deletions and re-additions:

module.exports = ({ config }) => {
  config.entry('index').prepend('babel-polyfill');
}

from neutrino.

eliperelman avatar eliperelman commented on June 12, 2024 1

It's funny you brought this up, because at the moment I am adding babel-polyfill by default to the index entry. This will probably land in v5, but still wanted to address your question.

In addition to the approach you took to adding babel-polyfill, you can also import it directly from your entrypoint:

import 'babel-polyfill';
import React from 'react';
// ...

You can also add it from your package.json:

{
  "config": {
    "neutrino": {
      "entry": {
        "index": ["babel-polyfill"]
      }
    }
  }
}

from neutrino.

jaridmargolin avatar jaridmargolin commented on June 12, 2024

Prepend solution looks great.

Out of curiosity, is this method documented? I do not see it in the documentation for webpack-chain. I do however see it in the src.

from neutrino.

eliperelman avatar eliperelman commented on June 12, 2024

Oo, good find, looks like it's not documented. I'll fix that up.

from neutrino.

jaridmargolin avatar jaridmargolin commented on June 12, 2024

Awesome. Thank you for the help and prompt replies!

from neutrino.

eliperelman avatar eliperelman commented on June 12, 2024

My pleasure!

from neutrino.

monkindey avatar monkindey commented on June 12, 2024

hi, @eliperelman , thanks for your funny neutrino project. I am new to neutrino, 😂 I want to remove the babel-polyfill for the lastest chrome so that easy to debug the generator. But I saw that, the generator transform will be default? Any thought about that?

from neutrino.

gormonn avatar gormonn commented on June 12, 2024

What is best way to add babel-polyfill in Neutrino v8 ?

from neutrino.

beetleman avatar beetleman commented on June 12, 2024

@eliperelman solution works well for v8, here you have my .neutrinorc.js:

module.exports = {
  use: [
    '@neutrinojs/standardjs',
    ({ config }) => config.entry('index').prepend('babel-polyfill'),  // you need this line
    '@neutrinojs/node',
    '@neutrinojs/jest'
  ]
}

from neutrino.

avdeev avatar avdeev commented on June 12, 2024

This solution add 2 more files in build for the react-components preset

from neutrino.

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.