GithubHelp home page GithubHelp logo

Comments (12)

FlorianRappl avatar FlorianRappl commented on May 24, 2024 1

Hi sorry for my late appearance. Wonderful that you made it work 🚀!

Also thanks for your PR - much appreciated 🍻!

from parcel-plugin-externals.

FlorianRappl avatar FlorianRappl commented on May 24, 2024

Hm can the rxReact catch React at all? It seems to be able to catch things like react-dom, but not react (it requires another part after a dash).

The other thing is that you may want to exclude @wordpress/element. If I understand this one brings React and React-DOM as globals already (but maybe I misunderstand).

Would it be possible to make a MWE of your solution? I'd like to better understand the current setup to give you a better advice. Maybe we can also enhance the API of the plugin to cover this case.

Hope that helps!

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

OK, I've made progress! :)

Reference: https://parceljs.org/module_resolution.html#aliases

"alias": {
	"react": "@wordpress/element",
	"react-dom": "@wordpress/element"
},
"externals": {
	"@wordpress/element": "wp.element"
}

Now the issue is my 3rd party component isn't satisfied :( https://www.npmjs.com/package/react-notifications-component

Any ideas why not???

image

FYI: your repo's (and this discussion's initial) code snippet includes "node_modules" in the regex match rule but path never starts with this. console.log( path ); worked a treat to see this.

from parcel-plugin-externals.

FlorianRappl avatar FlorianRappl commented on May 24, 2024

your repo's (and this discussion's initial) code snippet includes "node_modules" in the regex match rule

That's a great catch. Do you want to contribute a PR for this? Would be awesome to improve the docs. Otherwise, I'll correct this.

Any ideas why not???

Hm since we take the React UMD I could assume it does not come with a default export. Not sure though. To see if this is indeed the case you can try two things:

  1. "Hack" the react-notifications-component in your node_modules to use import * as React from 'react' instead of import React from 'react'
  2. Place in some code before react-notifications-component is imported / running the following snippet: require('react').default = require('react');

If either one or the other is suddenly working this is indeed the case. The second approach could be a way to circumvent this.

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

I'll do PR after I get things straight here in case there are any other tips to add to the readme.

Man, nothing I tried worked... I'm not sure how I can edit what comes down from npm install

The github repo does not come down raw but instead already built by webpack so I don't know how it could be edited. And the 2nd idea you had didn't fix it either.

image

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

I'm facing a deadline and really appreciate your quick help :D

Do you think https://parceljs.org/cli.html#expose-modules-as-umd is relevant at all? A quick try didn't work quite as well as yours but maybe I'm not using it correctly for my use case.

from parcel-plugin-externals.

FlorianRappl avatar FlorianRappl commented on May 24, 2024

Ok that it was prebuilt using Webpack may explain this. I would need to study the code, but unfortunately I am fully covered with meetings today - so I'll either catch a look later tonight or tomorrow ... sorry!

You can have a look at the code from the package how React is resolved there. Is it coming from the global? What name should be used there? Check the dependencies of the package.json of the external package, too - React should not be bundled in and marked as a peer dependency.

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

Tyvm. Yes it has react as a peer dependency:

https://github.com/teodosii/react-notifications-component/blob/master/package.json

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

Removing the "alias" from package.json seems to be the best out-of-the-box quick fix (i.e. no custom Externals JS and no modifying the npm dependency).

6min trial and error video, if you care to review: https://share.getcloudapp.com/5zuyOqkD

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

Great news! I got it sorted out. It was as simple as this:

"externals": {
	"@wordpress/element": "wp.element"
}

No "alias" or anything else!

I think the issues I was experiencing that caused me to think something wasn't working correctly was that my API validation was incorrect so stuff wasn't working because of that.

THANK YOU!

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

I submitted #14 -- thanks much for this package and your assistance!

from parcel-plugin-externals.

cliffordp avatar cliffordp commented on May 24, 2024

With your help:

https://github.com/cliffordp/cliff-wp-plugin-boilerplate#march-22-2020

Improve the JavaScript build for WordPress React, reducing the admin-settings.js file size:

  • Minified: from 265.91 KB to 35.16 KB (87% reduction)
  • Unminified: from 803.68 KB to 48.15 KB (94% reduction)

from parcel-plugin-externals.

Related Issues (17)

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.