Matthew Phillips
Matthew Phillips
This is bizarre because it must be intentional... which did you change Render and RenderFile to only return a string? This goes against normal Go convention, which is when an...
The following will throw: ```js const recipes = await Recipe.select('*').all(); const user = await Recipe.where('id', recipes[0].id).first() ``` Because the `id` is a bigint (autoincrementing primary key). It appears to be...
## Changes - Passes a `renderId` into solid so that we match up the render to hydration, in case there is multiple hydrations occuring on the page. - Closes https://github.com/withastro/astro/issues/3947...
There is still some passing around of the Vite dev server in the build. I don't think we actually use it though, so this is probably just a cleanup task.
This enables AMD and CommonJS modules to also be transpiled (run through Babel). Still a little bit of a WIP. Closes #1276
To better describe what development bundles are and what they are for. Link to the guide which explains how to build them. From gitter, [some confusion](https://gitter.im/donejs/donejs?at=59b00f199acddb24070c0dcc) about the difference.
@frank-dspeed commented on [Mon Nov 27 2017](https://github.com/stealjs/rfcs/issues/19) most now day libs ship with a main and a module property in npm package.json i would love to discuss how we handle...
Traditionally AMD executes all dependencies before executing a module. CommonJS, on the other hand, executes in require-order. That is, require determines the execution order. When transpiling CJS to AMD this...
This example demonstrates: ```js define('one', [ 'require', 'exports', 'module', /*'two'*/ ], function (require, exports, module) { module.exports = One; One.Two = require("./two"); function One() { } }); define('two', [ 'require',...
@matthewp commented on [Wed Oct 19 2016](https://github.com/stealjs/rfcs/issues/3) @justinbmeyer commented on [Mon Jul 21 2014](https://github.com/stealjs/steal/issues/216) Add a System extension that adds instrumentation. Hopefully an existing tool can be made to work...