Skip to content
This repository was archived by the owner on Jan 26, 2019. It is now read-only.

Commit 761fe6f

Browse files
gaearonwmonk
authored andcommitted
Fix external CSS imports (#2680)
* Fix external CSS imports * Add external CSS import to integration test * Fix assertion
1 parent a720aa0 commit 761fe6f

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
@@ -207,6 +207,9 @@ module.exports = {
207207
{
208208
loader: require.resolve('postcss-loader'),
209209
options: {
210+
// Necessary for external CSS imports to work
211+
// https://github.com/facebookincubator/create-react-app/issues/2677
212+
ident: 'postcss',
210213
plugins: () => [
211214
require('postcss-flexbugs-fixes'),
212215
autoprefixer({

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

+3
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,9 @@ module.exports = {
211211
{
212212
loader: require.resolve('postcss-loader'),
213213
options: {
214+
// Necessary for external CSS imports to work
215+
// https://github.com/facebookincubator/create-react-app/issues/2677
216+
ident: 'postcss',
214217
plugins: () => [
215218
require('postcss-flexbugs-fixes'),
216219
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)