JBallin

Results 11 comments of JBallin

Forking @elwinschmitz's [solution](https://github.com/mysticatea/npm-run-all/issues/209#issuecomment-847926286), you can instead avoid `npx` entirely: ``` "do:all-the-things": "npm-run-all do:a-thing do:another-thing", ```

+1 - Would like to be able to toggle showing tabs/status bar. Currently have to go to packages and disable/enable manually.

@afsinak, as @Blair2004 explained you now need to include `.fire` because `sweetalert2` has been updated. If you don't have any other questions, you should close the issue.

@vigo's got a good start but I would like to be able to use `enable` and `disable` so that it auto-completes packages. `apm enable tele[tab]` should complete to `teletype` for...

`remote_state` works too ``` remote_state { backend = "local" config = { path = "${get_parent_terragrunt_dir()}/${path_relative_to_include()}/terraform.tfstate" } generate = { path = "backend.tf" if_exists = "overwrite" } } ``` IMO this...

We also don't install `git` in our image, so I would like to be able pass whatever data is needed via CLI/env vars when using `npx`. I was thinking that...

[Instructions](https://registry.terraform.io/providers/newrelic/newrelic/latest/docs/resources/notification_destination#:~:text=Import%20Slack%20Destination) suggest not to copy state (as OP did)? Instead, leave the resource empty - but the validation fails on required attributes...?

For now, here's my workaround: ```tf resource "newrelic_notification_destination" "slack" { lifecycle { # attributes are only being set to pass validation (not actually used) # https://github.com/newrelic/terraform-provider-newrelic/issues/2025 ignore_changes = all #...

Agree with @zeffron that this is just an edge case in your validation not taking slack destinations into account - meaning that the validation itself needs to be fixed, not...

Right it wouldn't be explicit, which is confusing. Maybe a note in the docs is enough.