Renée

Results 200 issues of Renée

Proxied preferably!

t: new feature
t: proposal

Supposed to look like: ```js splitRequire.capture(function (ondone) { ssr.render(state, ondone) }, function (err, result, bundles) { // bundles is array of splitRequire()'d entry points }) // or var { bundles,...

Going to be useful for a `loadable-component` thing I'm working on. ```js var sr = require('split-require') var component = loadableComponent({ load: sr.bind(null, './whatever') // vs function (cb) { sr('./whatever', cb)...

this works: ```js import('./a') ``` but what do we do with ```js var a = './a' + Math.random() import(a) ```

so you can generate script tags for everything that is needed to render the page. maybe having an api like `splitRequire.capture(function (cb) { render(cb) }, function (result, bundles) {})` could...

ref @alterx's choo starter project: https://github.com/alterx/choo-browserify-beaker-starter/blob/8dafff279ce75f536dff4bbc5d80c0d7bb797c42/index.js#L21-L31 i think aliasify looks for `require()` calls in the source and rewrites them, so i'm not sure what we can do to fix this....

by exposing the necessary modules from the common module.

@ungoldman found a problem with the change in #38: ``` 15:05 < ungoldman> final note, error seems to be originating from here https://github.com/puleos/object-hash/blob/master/dist/object_hash.js 15:05 < ungoldman> https://usercontent.irccloud-cdn.com/file/6MtxkWve/Screen%20Shot%202019-05-24%20at%2012.05.22%20PM.png 15:05 < ungoldman>...

bug

i tried to make `index.js` auto detect if it was used as a plugin, and then `require('./plugin')` if it was. but, that means index.js and plugin.js depend on each other....

bug

properly supporting module.parent is probably not possible, since the module that `require`d the current module is executed _after_ the current one, so we don't have a reference to the "parent"...

enhancement