From c93bc1daaf04bf6b329ac1678af78c615163282a Mon Sep 17 00:00:00 2001 From: Connor Skees <39542938+connorskees@users.noreply.github.com> Date: Sun, 19 Apr 2020 22:31:59 -0400 Subject: [PATCH] Add bug issue template --- .../ISSUE_TEMPLATE/incorrect-sass-output.md | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/incorrect-sass-output.md diff --git a/.github/ISSUE_TEMPLATE/incorrect-sass-output.md b/.github/ISSUE_TEMPLATE/incorrect-sass-output.md new file mode 100644 index 0000000..1e5b93d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/incorrect-sass-output.md @@ -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; +} +```