Add initial testing code

This commit is contained in:
James Skemp 2024-01-03 13:14:03 -06:00
commit 0ebb5728ad
4 changed files with 20 additions and 0 deletions

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# Sass Testing
```powershell
npm install -g sass
sass input/:output/
```

6
input/style.scss Normal file
View File

@ -0,0 +1,6 @@
body {
width: 100%;
p {
color: red;
}
}

8
output/style.css Normal file
View File

@ -0,0 +1,8 @@
body {
width: 100%;
}
body p {
color: red;
}
/*# sourceMappingURL=style.css.map */

1
output/style.css.map Normal file
View File

@ -0,0 +1 @@
{"version":3,"sourceRoot":"","sources":["../input/style.scss"],"names":[],"mappings":"AAAA;EACI;;AACA;EACI","file":"style.css"}