Jason Pickens
Jason Pickens
# 🐛 bug report `parcel serve` works fine but `parcel build` fails with: ``` @parcel/transformer-sass: Can't find stylesheet to import. ╷ 5 │ @import "~bootstrap/scss/bootstrap"; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ ``` This...
### Terraform Version ``` ❯ terraform -v Terraform v0.12.23 ``` ### Terraform Configuration Files `variables.tf`: ```hcl variable "foo" { type = string } ``` `terraform.tfvars`: ```hcl foo = bar ```...
Fixes #638 Consider the following structure: ``` - a/index.d.ts - b/index.d.ts - package.json ``` Where `package.json` has: ``` "types": "b/index.d.ts", ``` and `b/index.d.ts` has: ``` export * from '../a'; ```...
Fixes #640
We had `stOutputPackage` set to `web.typings`. A module generated a member named `web`. The imports break with something like `value typings is not a member of web`. All the references...
importing `"@stripe/stripe-js" -> "4.1.0"` does not generate any types (besides `stripeStripeJsRequire`). The `package.json` has: ``` "types": "lib/index.d.ts", ``` and `lib/index.d.ts` has: ``` export * from '../dist'; ``` It looks to...
It looks like macro annotations can now modify their companion objects in Scala 3.5.0: https://github.com/scala/scala3/pull/19677
cats-effect 3.5.4, fs2 3.10.2, and interop-cats 23.1.0.2 and Scala 2.13 This will hang: ``` package com.goodcover import cats.effect.IO import cats.effect.unsafe.IORuntime import com.typesafe.scalalogging.StrictLogging import org.scalatest.flatspec.AnyFlatSpec import zio.ZIO import zio.interop._ import zio.interop.catz.implicits._...
**Is your feature request related to a problem? Please describe.** I can't report the error to Sentry when loading the library fails. **Describe the solution you'd like** I'd like to...
Is it possible to have a flag with optional arguments? I want to be able to pass `--mirror` and `--mirror `. Either mirror is missing, present without a value, or...