-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rename): rename the project to babel-plugin-macros
Closes #41 BREAKING CHANGE: upgrades to babel v7
- Loading branch information
Kent C. Dodds
committed
Dec 9, 2017
1 parent
56b5910
commit 053beb8
Showing
17 changed files
with
136 additions
and
133 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const babelConfig = require('kcd-scripts/babel') | ||
|
||
// we don't want to use babel-macros inside babel-macros... | ||
// and until kcd-scripts gets upgraded to babel-plugin-macros | ||
// we'll have both of those referenced here... | ||
babelConfig.plugins = babelConfig.plugins.filter( | ||
pluginPath => | ||
!pluginPath.includes('babel-macros/') && | ||
!pluginPath.includes('babel-plugin-macros/'), | ||
) | ||
module.exports = babelConfig |
Oops, something went wrong.