Faris Mustafa

Results 28 issues of Faris Mustafa

```json { "development": { "build": { "uglify": false } }, "production": { "build": { "uglify": true } } } ```

enhancement

My requirejs config looks as such: ``` requirejs.config({ urlArgs: 'v=' + (new Date().getTime()) }); ``` However, when I run bower-requirejs I end up with a config that has an evaluated...

```bf using System; using System.Collections; namespace TryBeef; class Program { public static void Main(String[] args) { void Fn(T a) where T : IEnumerable { Console.WriteLine("{}", a.GetEnumerator()); } Console.WriteLine("{}", int[]().GetEnumerator()); Fn(int[](1,2,3));...

```bf using System; namespace TryBeef; class Program { public static void Main(String[] args) { void Fn(float? a) { let b = (double?)a; // crashes IDE when compiling } float? a...

``` using System; namespace TryBeef; class Program { public static void Main(String[] args) { void fn(int? a) { Console.WriteLine("int"); } void fn(float a) { Console.WriteLine("float"); } void fn(String a) {...

This PR upgrades the `mint docs generate` command with static HTML generation. I tried to model the generators after the existing json generators. At first I couldn't decide if I...

tooling
refactor

It does not appear that global components are mounted during tests, this would be a great feature to have. ```mint global component Modal { fun method { true } fun...

bug

Not sure if this is VSCode specific or just a general LS thing, but for me on VSCode I don't see any outline view

tooling

A gif maybe the best way to show what's going on here. ![2023-09-03 17 17 49](https://github.com/mint-lang/mint/assets/3803714/6528458f-d140-48f4-9cbe-967719605353) ![2023-09-03 17 15 37](https://github.com/mint-lang/mint/assets/3803714/49755ceb-76a6-4c96-9e6c-12388408cda0)

bug
tooling

In Mint, to pass a bunch of property variables to a component, you have to list out the key/value for each one. ``` component Main { fun render : Html...

language
feature request