-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for returning media queries as raw strings in transform API
- Loading branch information
1 parent
c97c950
commit f333cd9
Showing
8 changed files
with
566 additions
and
183 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js b/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js | ||
index 19903eb..6bc04a8 100644 | ||
--- a/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js | ||
+++ b/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js | ||
@@ -59,6 +59,13 @@ getBindingIdentifiers.keys = { | ||
InterfaceDeclaration: ["id"], | ||
TypeAlias: ["id"], | ||
OpaqueType: ["id"], | ||
+ TSDeclareFunction: ["id"], | ||
+ TSEnumDeclaration: ["id"], | ||
+ TSImportEqualsDeclaration: ["id"], | ||
+ TSInterfaceDeclaration: ["id"], | ||
+ TSModuleDeclaration: ["id"], | ||
+ TSNamespaceExportDeclaration: ["id"], | ||
+ TSTypeAliasDeclaration: ["id"], | ||
CatchClause: ["param"], | ||
LabeledStatement: ["label"], | ||
UnaryExpression: ["argument"], |
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.