Eyal Keren
Eyal Keren
Here are my two cents: - `test` is for preflight code blocks, this keyword is only available in `*.test.w` files and it creates an isolated environment that can run checks...
You'll notice that: - `wing run ./src/wing/main.w` - `wing run ./src/wing/subfolder/main.w` doesn't work Given the following: ``` . ├── package.json ├── src │ ├── controllers │ │ └── user.ts │ ...
> Would this also apply to any logical expressions (e.g. b1 && b2 or !b2)? Off the cuff, I would say yes. I believe that if it doesn't make sense...
@Chriscbr FYI, I think that the current situation doesn't make sense IMO ``` let b: bool? = false; if b? { log("Surprise"); } ```
I like option number one, it seems like a safe bet to me. we (have `if let`, `x!` and even `x?.y` in the language syntax to work with nils) If...
I was working on recreating a blog post that used a bucket as the source of images But even when I was using bucket before, it was convenient to have...
keep
@revitalbarletz 👆
Does this issue only surface when installing a @winglib? Or are there issues if I install wing with yarn add (not globally)