generated from oddbird/polyfill-template
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #277 from oddbird/size-audit
Reduce built library size
- Loading branch information
Showing
8 changed files
with
414 additions
and
107 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
declare module 'css-tree/walker' { | ||
import { walk } from 'css-tree'; | ||
|
||
export default walk; | ||
} | ||
|
||
declare module 'css-tree/utils' { | ||
export { clone, List } from 'css-tree'; | ||
} | ||
|
||
declare module 'css-tree/generator' { | ||
import { generate } from 'css-tree'; | ||
|
||
export default generate; | ||
} | ||
|
||
declare module 'css-tree/parser' { | ||
import { parse } from 'css-tree'; | ||
|
||
export default parse; | ||
} |
Oops, something went wrong.