Add bug issue template

This commit is contained in:
Connor Skees 2020-04-19 22:31:59 -04:00 committed by GitHub
parent 7579a6e9b5
commit c93bc1daaf

View File

@ -0,0 +1,29 @@
---
name: Incorrect SASS Output
about: There exists a differential between the output of grass and dart-sass
title: ''
labels: bug
assignees: connorskees
---
**Minimal Reproducible Example**:
```
a {
color: red;
}
```
**`grass` Output**:
```
a {
color: red;
}
```
**`dart-sass` Output**:
```
a {
color: red;
}
```