forked from marcysutton/js-a11y-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try babel plugin for default from in mdx-deck
- Loading branch information
Marcy Sutton
committed
Jul 7, 2019
1 parent
eaf83a5
commit 37dc093
Showing
4 changed files
with
29 additions
and
0 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
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 @@ | ||
exports.onCreateBabelConfig = function onCreateBabelConfig({ actions }) { | ||
actions.setBabelPlugin({ | ||
name: `@babel/plugin-proposal-export-default-from` | ||
}) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
"version": "1.0.0", | ||
"author": "Marcy Sutton <[email protected]>", | ||
"dependencies": { | ||
"@babel/plugin-proposal-export-default-from": "^7.2.0", | ||
"@mdx-js/mdx": "^1.0.10", | ||
"@mdx-js/react": "^1.0.6", | ||
"autoprefixer": "^9.6.1", | ||
|