Giter VIP home page Giter VIP logo

Comments (5)

trusktr avatar trusktr commented on May 30, 2024

I found this: webpack/webpack#150

My use case is that a previous library at work (a very big one) is written entirely in AMD format for RequireJS, and one files does

define([
  'async!//maps.googleapis.com/maps/api/js?sensor=false&libraries=geometry'
  ], function () {
  return google.maps;
});

I don't want to modify any of the libs at all. I was hoping script-loader would do that trick (I know, it's not the normal webpack usage, but it would be handy sometimes), and that I could alias async! to script!, or perhaps just clone script-loader, and publish it as async-loader with it's prefix name changed.

from script-loader.

sokra avatar sokra commented on May 30, 2024

webpack doesn't handle script loading. Use an separate library for this. i. e. https://github.com/ded/script.js/

from script-loader.

trusktr avatar trusktr commented on May 30, 2024

@sokra Thanks for the advice! I'm trying to avoid modifying the library, which is all AMD modules, and has some modules that load externals in this manner (using the requirejs async plugin). It'd be nice if webpack could bundle a handler that would fetch things in the browser for these types of cases. The problem is if I modify the way the library works, I might have to go and modify dozens of other code bases that depend on it, which I want to avoid. If webpack would work with this scenario without having to modify the library that'd be great!

I think I might be able to work around this by blacklisting the above example file in externals, then just loading it before the bundle, then AMD files depending on the above file would just get passed the external. I'll try that tomorrow.

Closing since I think that will work, plus it's not part of webpack spec for webpack to load files like that anyway.

from script-loader.

pherrymason avatar pherrymason commented on May 30, 2024

Hi @trusktr, did you manage to solve this issue? I'm having a similar one.
Thank you.

from script-loader.

johanroug avatar johanroug commented on May 30, 2024

take a look at externals. You can define a script in your html, and tell webpack that you have done so.

https://webpack.js.org/configuration/externals/

from script-loader.

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.