Maël Nison
Maël Nison
I spotted this issue while trying to replace babel-register w/ esbuild-register in the Yarn codebase. **x.js** ```ts import {y} from './y'; export function x() { y(); } ``` **y.js** ```ts...
In the following example, `"foo.js"` is hardcoded inside the output: https://hyrious.me/esbuild-repl/?version=0.14.42&mode=build&modules=%5B%5B%22main.js%22%2C%22const+foo+%3D+await+import%28%27.%2Ffoo%27%29%3B%22%2C1%5D%2C%5B%22foo.js%22%2C%22module.exports+%3D+%7B__esModule%3A+true%2C+default%3A+42%7D%3B%22%2C0%5D%5D&buildOptions=%7B%22bundle%22%3Atrue%2C%22format%22%3A%22esm%22%2C%22splitting%22%3Atrue%2C%22minify%22%3Afalse%2C%22keepNames%22%3Afalse%7D Since it's a regular string, it cannot be removed by subsequent tools (such as Terser) and can lead to...
Related: https://github.com/evanw/esbuild/issues/459 In Webpack, [`__webpack_public_path__`](https://webpack.js.org/guides/public-path/#on-the-fly) is a runtime variable that contains the public path used to load the assets. Unlike the static `publicPath` configuration (or what's `--asset-path` for esbuild), it...
(I opened a question [here](https://stackoverflow.com/questions/64380899/add-branch-size-allowance-to-d3), but I don't think it's possible under the current core so I don't expect many answers) The current tree implementation seems to always put children...
Victory
Well ... it doesn't seem possible to win, is it ? :3
This PR is a follow-up to the [Ambient Loaders proposal](https://github.com/nodejs/loaders/blob/main/doc/design/proposal-ambient-loaders.md). Since in the last meetings we weren't too sure whether "ambient loaders" shouldn't just be the default loaders behaviour, I...
**What happened?** The [Codespaces](https://github.com/features/codespaces) expose their ports through https. Since the UI loads its config through HTTP, Chrome rejects the request: > Mixed Content: The page at '[https://xxxx.githubpreview.dev/](https://xxxx.githubpreview.dev/)' was loaded...
Currently Enquirer makes it easy enough to do things like: ``` Stage this hunk [y,n]? ``` However, in various context (for instance when running `git add -p`), you want to...
Scrolling
Hello! I've been playing with Ink yesterday, and I really like where you're going. I've worked on [something similar](https://manaflair.github.io/mylittledom/demo/#complex-form) before, but your approach seems much simpler and less labyrinthine. Kudos!...
**Is your feature request related to a problem? Please describe.** MikroORM has a feature called [References](https://mikro-orm.io/docs/entity-references/) - basically, fields contain a wrapper that itself contain the true relation entity. Those...