-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix: format indented sass * chore: add changeset
- Loading branch information
1 parent
c5a7a7f
commit a7a6b14
Showing
19 changed files
with
110 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'prettier-plugin-astro': patch | ||
--- | ||
|
||
Fix: format indented sass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 0 additions & 31 deletions
31
test/fixtures/styles/single-style-element-with-sass-lang/input.astro
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
test/fixtures/styles/single-style-element-with-sass-lang/output.astro
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
test/fixtures/styles/single-style-element-with-scss-lang/input.astro
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
test/fixtures/styles/single-style-element-with-scss-lang/output.astro
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<html> | ||
<head> | ||
<title>Title of the document</title> | ||
</head> | ||
|
||
<body> | ||
<h1>This is a heading</h1> | ||
<p>This is a paragraph.</p> | ||
</body> | ||
|
||
</html> | ||
|
||
|
||
<style> | ||
.hello { | ||
color: red; | ||
} | ||
</style> |
17 changes: 17 additions & 0 deletions
17
test/fixtures/styles/with-styles-and-body-tag/output.astro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<html> | ||
<head> | ||
<title>Title of the document</title> | ||
</head> | ||
|
||
<body> | ||
<h1>This is a heading</h1> | ||
<p>This is a paragraph.</p> | ||
</body> | ||
|
||
</html> | ||
|
||
<style> | ||
.hello { | ||
color: red; | ||
} | ||
</style> |
Oops, something went wrong.