Giter VIP home page Giter VIP logo

autoload-modules-loader's People

Contributors

kevinbarabash avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

autoload-modules-loader's Issues

Handle import statements

Currently you have to compile import statements to requires before running this loader. It would be nice to lift that restriction.

inject require statements after require statements for the module we're autoloading plugins for

What this loader should actually be doing, is looking for files which load a particular module, e.g. "handlebars/runtime" and should insert the "plugin" modules afterwards, e.g.

const Handlebars = require("handlebars/runtime");
// other require statements

should be transformed to

const Handlebars = require("handlebars/runtime");
require("../path/to/handlebars-extras.js");
// other require statements

code review initial commit

I messed up and commit the actually implementation in my first commit instead of have a placeholder commit to make a PR against.

The goal of this webpack loader is to implement the same semantics as the "plugins" option in third_party_js.py in webapp. This is accomplished by appending require statements to the module being loaded. Which modules are loaded by these new require statements is specified as a comma separate lists of paths in the loader's query parameter.

The test plan for 95c5134 is:

  • npm run test

@jeresig could you have a look at that commit and let me know if you have any concerns?

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.