Mark Avery
Mark Avery
@RomanHotsiy do you have any documentation on how to overwrite that "Config" module then?
@RomanHotsiy or could you look over https://github.com/Redocly/openapi-cli/blob/master/packages/core/src/config/config.ts briefly and let me know how to polyfil some of those code paths?
hmmm... Backstage doesn't provide that level of customization unless you basically rewrite the whole webpack config. I assume that the long term solution will to end up using a different...
@CarltonHowell I did! I used the component I referenced above. Are you on the backstage discord?
@jherdman so that just triggers the drop event right?
ya. hmm. ok. i might be able to look at that later. might be best to do a whole new helper cause the api is different. Side Note: what could...
ya.. it's just the "event.target.files" vs "event.dataTransfer.items", and then it looks like you have to use a "getAsFile" method on each individual item. The api's are so different, that you'd...
does this mean instead of https://github.com/npm/node-tar/blob/9d71c5673683d6309c75e6a85e78fa285dbe9a2d/lib/parse.js#L85-L94 you would do ```javascript this.on('end', () => setTimeout(() => this.emit('close'))) if (opt.ondone) { this.on(DONE, opt.ondone) } else { this.on(DONE, _ => { this.emit('prefinish') this.emit('finish')...
meant to say "odd" addition. I was going to try to add a test case.
I tried adding this test ```javascript t.test('ensure an open stream is not prematuraly closed', t => { const file = path.resolve(tars, 'body-byte-counts.tar') const dir = path.resolve(extractdir, 'basic-with-stream') t.beforeEach(async () =>...