Artem Yarmoliuk
Artem Yarmoliuk
Prism provides their own live syntax highlight functionality https://live.prismjs.com/ + https://github.com/PrismJS/live, so I decided to give it a try. Results look like this: https://user-images.githubusercontent.com/9439689/139658916-2b1b9baa-c985-4e25-a5d4-6d2c5d5bd6fd.mov Fixes #27
Updating x/sys so that this project supports go 1.17. More context: https://github.com/Homebrew/homebrew-core/pull/83413 Without this fix running a binary can cause a panic, see upstream go issue: https://github.com/golang/go/issues/45702
Bump x/sys so that this project supports go 1.17. More context: https://github.com/Homebrew/homebrew-core/pull/83413 Without this fix running a binary can cause a panic, see upstream go issue: https://github.com/golang/go/issues/45702
Parse complex attributes as maps and arrays instead of separate attribute per item. Given resource: ``` resource "null_resource" "cluster" { triggers { cluster_instance_ids = "id" } ``` Current output: ```...
Closes #7
Current approach with `CustomResource["relative/path/to/crd.yaml", "spec", "some_property"]` is limited to having only one definition/version in crd file and its impossible to extend with new options. Returned errors always mention `TypedDict('Jsonschema')` which...
This should fix #12 I also had to change development version for `rubocop` since it was incompatible with new rake versions (bbatsov/rubocop#2931). Bundler errors in build were fixed (bundler/bundler#3559)
[This](https://github.com/PowerShell/xDhcpServer/blob/0d4ecaf94aaf7b5b79dd301569b0f5bbad7894e3/DSCResources/MSFT_xDhcpServerOption/MSFT_xDhcpServerOption.psm1#L244) ``` powershell $dhcpOption = Get-DhcpServerv4OptionValue -ScopeID $ScopeID ``` never returns empty. According to [technet article](https://technet.microsoft.com/en-us/library/dd183665%28v=ws.10%29.aspx) if not specified default Lease Duration for a scope will be 8 days. Because...
Similar to [`customTimeouts`](https://www.pulumi.com/docs/intro/concepts/resources/#customtimeouts) add `customRetries` options to resource. In ideal world resource providers would handle retrying common errors (similar to what [terraform does](https://www.terraform.io/docs/extend/resources/retries-and-customizable-timeouts.html#retry)), but this probably won't happen for autogenerated...
Some systems require junit report to be in a single file. For example `bazel` https://bazel.build/reference/test-encyclopedia needs single file to be available in `XML_OUTPUT_FILE` path. To avoid implementing junit aggregation in...