-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(postcss-syntax): update
parse
function to generate css rules o…
…ne line per slot(makeStyles)/declaration(makeResetStyles) (#548) * new parser * export a post processor * update parser * ut * wip * cleanup * return root instead of docs * cleanup * update comments * Change files * update changelog * fix lint
- Loading branch information
1 parent
5811aef
commit 8f670a5
Showing
6 changed files
with
133 additions
and
186 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
change/@griffel-postcss-syntax-3a9b3f4c-8147-4076-9876-a8e0a0624d98.json
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,7 @@ | ||
{ | ||
"type": "minor", | ||
"comment": "Update `parse` to generate css rules one line per slot(makeStyles)/declaration(makeResetStyles)", | ||
"packageName": "@griffel/postcss-syntax", | ||
"email": "yuanboxue@microsoft.com", | ||
"dependentChangeType": "patch" | ||
} |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export const GRIFFEL_SLOT_RAW = 'griffel-slot'; | ||
export const GRIFFEL_SRC_RAW = 'griffel-src'; | ||
export const GRIFFEL_DECLARATOR_RAW = 'griffel-declarator'; | ||
export const GRIFFEL_SLOT_LOCATION_RAW = 'griffel-slot-location'; | ||
export const GRIFFEL_DECLARATOR_LOCATION_RAW = 'griffel-declarator-location'; |
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
Oops, something went wrong.