Skip to content

Commit

Permalink
Adapt jest and eslint for new default loader scope. (facebook#1077)
Browse files Browse the repository at this point in the history
Revert webpack prod config comments to not refer to dev server.
  • Loading branch information
bebbi authored and randycoulman committed May 8, 2017
1 parent 4ca80a3 commit efef1ba
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
3 changes: 1 addition & 2 deletions packages/eslint-config-react-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ module.exports = {

settings: {
'import/ignore': [
'node_modules',
'\\.(json|css|ico|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$',
'node_modules'
],
'import/extensions': ['.js'],
'import/resolver': {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-scripts/config/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ module.exports = function(publicPath) {
// A missing `test` is equivalent to a match.
{
exclude: [
/\.(html)$/,
/\.html$/,
/\.(js|jsx)$/,
/\.css$/,
/\.json$/
Expand Down
12 changes: 5 additions & 7 deletions packages/react-scripts/config/webpack.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,15 +124,13 @@ module.exports = {
// we need to add the supported extension to this loader too.
// Add one new line in `exclude` for each loader.
//
// "file" loader makes sure those assets get served by WebpackDevServer.
// When you `import` an asset, you get its (virtual) filename.
// In production, they would get copied to the `build` folder.
// "url" loader works like "file" loader except that it embeds assets
// smaller than specified limit in bytes as data URLs to avoid requests.
// A missing `test` is equivalent to a match.
// "file" loader makes sure those assets end up in the `build` folder.
// When you `import` an asset, you get its filename.
// "url" loader works just like "file" loader but it also embeds
// assets smaller than specified size as data URLs to avoid requests.
{
exclude: [
/\.(html)$/,
/\.html$/,
/\.(js|jsx)$/,
/\.css$/,
/\.json$/
Expand Down
2 changes: 1 addition & 1 deletion packages/react-scripts/utils/createJestConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = (resolve, rootDir, isEjecting) => {
moduleDirectories: [paths.appSrc, paths.appNodeModules, paths.ownNodeModules],
moduleFileExtensions: ['jsx', 'js', 'json'],
moduleNameMapper: {
'^.+\\.(ico|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': resolve('config/jest/FileStub.js'),
'^.+\\.(?!(js|jsx|css|scss|json)$)[^\\.]+$': resolve('config/jest/FileStub.js'),
'^.+\\.(css|scss)$': resolve('config/jest/CSSStub.js')
},
setupFiles: [resolve('config/polyfills.js')],
Expand Down

0 comments on commit efef1ba

Please sign in to comment.