NullVoxPopuli
NullVoxPopuli
I think there are two more release strategies we should add as options -- which I think strengthens the argument to have none enabled by default? The two I'd like...
I opened an issuer here on glint, https://github.com/typed-ember/glint/issues/597 and @dfreeman mentioned the exact same thing! I personally haven't had the time to forward the flag, but a PR would be...
I'm getting EBADF on both of these blitz (both from GH): - https://stackblitz.com/github/nullVoxPopuli/polaris-starter/tree/monorepo - https://stackblitz.com/github/nullVoxPopuli/polaris-starter/tree/main
> We are planning to release an upgrade to Node.js 18 in the coming 1 to 2 weeks Didn't look like this happened? I opened an issue here: https://github.com/stackblitz/core/issues/2926 webpack...
kind of all of it -- I don't have enough information to ask something specific. For my concurrently command which starts a lot of _watching_ processes, I'd like to have...
in your addon, do you have: ``` options: { 'ember-cli-babel': { enableTypeScriptTransform: true } } ``` ? https://github.com/emberjs/ember-cli-babel?tab=readme-ov-file#enabling-typescript-transpilation
So something like: ```js const sideWatch = require('@embroider/broccoli-side-watch'); function watchLibraries(...libraries) { const paths = libraries.map(libraryName => { let entry = path.resolve(libraryName); let manifestPath = findPackageJsonUp(entry); let packagePath = path.dirname(manifestPath); let...
Here is the code I actually ended up with (the above was just spit ballin'): Deps ``` "@embroider/broccoli-side-watch": "0.0.2-unstable.ba9fd29", "@pnpm/find-workspace-packages": "6.0.9", "package-up": "5.0.0" ``` some-file.js (as CJS) ```js 'use strict';...
Could be environment related, I suppose. I know watch behaviors are wildly different between machines that have watchman installed, vs using a native inotify -- though, I was testing this...
Just set this up in another project, here is a full ember-cli-build.js ```js 'use strict'; const EmberApp = require('ember-cli/lib/broccoli/ember-app'); const path = require('path'); const fs = require('fs'); module.exports = async...