Eli Skeggs
Eli Skeggs
#### Problem I'd rather only provide access to some machines to create log streams within an existing log group, rather than also providing access to `CreateLogGroup`; would it be reasonable...
`pritunl-client` currently only updates resolvconf/systemd-resolve in graphical mode. This PR contains proof-of-content support for the shell platform. Note that this duplicates logic from `__main__.py`, which is suboptimal. I'm not super...
Per w3c/csswg-drafts#1594, the CSS WG is amenable to making animations composable/additive: either via a general-purpose `!add` annotation, or via an `animation-composite` property. The adoption and implementation of such functionality would...
Currently, `jsesc` produces unsupported code when passed a `Date` object: ```js jsesc({ value: new Date() }) // => '{\'value\':Tue Mar 31 2020 18:06:06 GMT-0700 (Pacific Daylight Time)}' ``` Ideally, this...
As I understand it, `json` tries to ensure that the output is JSON-compatible, at least in the types supported. It seems that `Map` and `Set` don't comply with this: ```js...
For example: ```js const cyclic = {}; cyclic.cyclic = cyclic; // RangeError: Maximum call stack size exceeded jsesc(cyclic); ``` I think this is typically done by tracking an array of...
Feature request: ```js // Current behavior > jsesc({ key: 'value' }, { minimal: true }) '{\'key\':\'value\'}' // Preferred behavior > jsesc({ key: 'value' }, { minimal: true }) '{key:\'value\'}' ```
### Terraform Version ``` Terraform v0.14.5 + provider registry.terraform.io/hashicorp/aws v3.34.0 + provider registry.terraform.io/hashicorp/external v2.1.0 ``` ### Affected Resource(s) - `external` ### Terraform Configuration Files ```hcl data "external" "test" { program...
```js const v = /*a*/`/*b*/${/*c*/12}`; ``` ### Expected output ```js const v = `/*b*/${12}`; ``` ### Actual output ```js const v = `/*b*/${/*c*/12}`; ```
The provided packer image builds on alpine, which doesn't appear to have `session-manager-plugin` support: https://github.com/hashicorp/packer/issues/8242. It'd be nice if the provided image or some variant did have support for that...