-
Notifications
You must be signed in to change notification settings - Fork 4
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 #471 from Smithsonian/develop
v0.9.12 Release Candidate 8
- Loading branch information
Showing
148 changed files
with
26,621 additions
and
24,838 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
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn lint |
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,10 +1,14 @@ | ||
/** | ||
* Config Overrides | ||
* | ||
* This config is used for overriding default webpack config of CRA without | ||
* ejecting. | ||
*/ | ||
const { override, addExternalBabelPlugin } = require('customize-cra'); | ||
const { addReactRefresh } = require('customize-cra-react-refresh'); | ||
|
||
module.exports = override(addExternalBabelPlugin('react-activation/babel'), addReactRefresh()); | ||
/** | ||
* Config Overrides | ||
* | ||
* This config is used for overriding default webpack config of CRA without | ||
* ejecting. | ||
*/ | ||
const path = require('path'); | ||
const { override, addExternalBabelPlugin, babelInclude } = require('customize-cra'); | ||
const { addReactRefresh } = require('customize-cra-react-refresh'); | ||
|
||
module.exports = override(addExternalBabelPlugin('react-activation/babel'), addReactRefresh(), babelInclude([ | ||
path.resolve('src'), // make sure you link your own source | ||
path.resolve('../common'), | ||
])); |
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
Oops, something went wrong.