Mehul Kar

Results 104 issues of Mehul Kar

grid layout? preview maybe? more colors? Could be fun to design a hall of fame if anyone wants to help!

Fixes https://github.com/actions/toolkit/issues/1684

undici is used in `@actions/github`, but it isn't in dependencies: - https://github.com/actions/toolkit/blob/ef77c9d60bdb03700d7758b0d04b88446e72a896/packages/github/src/internal/utils.ts#L4 - https://github.com/actions/toolkit/blob/ef77c9d60bdb03700d7758b0d04b88446e72a896/packages/github/package.json#L40-L48

bug

```js class Foo { imagePath = `${imageDir}/sample.png`; } ``` This doesn't get rewritten with the asset rev. One use case for this is in an Ember app that specifies a...

I ran into a very unique case in an Ember app's JS filename is referenced in the app code, but is not intended to be an asset path. I'd like...

I want to be able to do `ember fastboot:test --host localhost`. Currently, it uses whatever is configured in the `.ember-cli` file. Looks like a couple things need to happen: 1....

### Describe the feature or problem you’d like to solve I want to push up a new repo to Github with: ```bash gh repo create --public --push --remote origin --source...

enhancement
needs-triage

I'm attempting to mock out `node:child_process` using quibble and `tsx` loader at the same time, but it doesn't seem to work. Reproduction here: https://github.com/mehulkar/esm-mock-test

the app server needs to be able to use the --host flag. See more details in https://github.com/kaliber5/ember-fastboot-app-tests/issues/46

I've added the following code to my attachment model: ``` ruby class Attachment < ActiveRecord::Base has_attached_file :data before_post_process :mark_as_unprocessed after_post_process :mark_as_processed process_in_background :data private def mark_as_unprocessed assign_attributes(processed: false) end def...