Skip to content

Commit cbece92

Browse files
gaearonromaindso
authored andcommitted
Fix external CSS imports (facebook#2680)
* Fix external CSS imports * Add external CSS import to integration test * Fix assertion
1 parent 58a6fc8 commit cbece92

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed

packages/react-scripts/config/webpack.config.dev.js

+3
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,9 @@ module.exports = {
219219
{
220220
loader: require.resolve('postcss-loader'),
221221
options: {
222+
// Necessary for external CSS imports to work
223+
// https://github.com/facebookincubator/create-react-app/issues/2677
224+
ident: 'postcss',
222225
plugins: () => [
223226
require('postcss-flexbugs-fixes'),
224227
autoprefixer({

packages/react-scripts/config/webpack.config.prod.js

+3
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,9 @@ module.exports = {
228228
{
229229
loader: require.resolve('postcss-loader'),
230230
options: {
231+
// Necessary for external CSS imports to work
232+
// https://github.com/facebookincubator/create-react-app/issues/2677
233+
ident: 'postcss',
231234
plugins: () => [
232235
require('postcss-flexbugs-fixes'),
233236
autoprefixer({

packages/react-scripts/fixtures/kitchensink/.template.dependencies.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"chai": "3.5.0",
77
"jsdom": "9.8.3",
88
"mocha": "3.2.0",
9+
"normalize.css": "7.0.0",
910
"prop-types": "15.5.6",
1011
"test-integrity": "1.0.0"
1112
}

packages/react-scripts/fixtures/kitchensink/integration/webpack.test.js

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ describe('Integration', () => {
1717

1818
expect(
1919
doc.getElementsByTagName('style')[0].textContent.replace(/\s/g, '')
20+
).to.match(/html\{/);
21+
expect(
22+
doc.getElementsByTagName('style')[1].textContent.replace(/\s/g, '')
2023
).to.match(/#feature-css-inclusion\{background:.+;color:.+}/);
2124
});
2225

packages/react-scripts/fixtures/kitchensink/src/features/webpack/assets/style.css

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Ensure CSS inclusion doesn't regress
3+
* https://github.com/facebookincubator/create-react-app/issues/2677
4+
*/
5+
@import '~normalize.css/normalize.css';
6+
17
#feature-css-inclusion {
28
background: palevioletred;
39
color: papayawhip;

0 commit comments

Comments
 (0)