File tree Expand file tree Collapse file tree 3 files changed +6
-16
lines changed
src/scripts/components/site-content Expand file tree Collapse file tree 3 files changed +6
-16
lines changed Original file line number Diff line number Diff line change 46
46
"eslint-plugin-jsx-a11y" : " ^3.0.2" ,
47
47
"eslint-plugin-react" : " ^6.9.0" ,
48
48
"exports-loader" : " ^0.6.3" ,
49
- "extract-text-webpack-plugin" : " ^1.0.1 " ,
49
+ "extract-text-webpack-plugin" : " github:michelebertoli/extract-text-webpack-plugin#614c3bb1ed72587218aa644df12bbf514fb77a06 " ,
50
50
"file-loader" : " ^0.9.0" ,
51
51
"html-loader" : " ^0.4.4" ,
52
52
"image-webpack-loader" : " ^3.1.0" ,
Original file line number Diff line number Diff line change 1
1
@value screen_small_min_width from '../../../styles/base/breakpoints.css' ;
2
2
@value screen_medium_min_width from '../../../styles/base/breakpoints.css' ;
3
-
4
- /*
5
- * TODO: Attempting to use values or compose styles from colors.css leads to
6
- * the error:
7
- *
8
- * "Order in extracted chunk undefined"
9
- *
10
- * Unfortunately, it's not clear why. So for now, the colors used here are
11
- * hardcoded. I need to figure out why this happens!
12
- *
13
- * @value sky_blue from '../../../styles/base/colors.css';
14
- * composes: skyBlue from '../../../sstyles/base/colors.css';
15
- */
3
+ @value sky_blue from '../../../styles/base/colors.css' ;
16
4
17
5
.container {
18
6
padding : 1rem 1rem 2rem 1rem ;
19
7
}
20
8
21
9
.containerHomePageNav {
22
10
composes : container;
23
- background : # 6090d0 url (./ resting_above_treeline.jpg) bottom left no-repeat;
11
+ background : sky_blue url (./ resting_above_treeline.jpg) bottom left no-repeat;
24
12
padding-bottom : 1rem ;
25
13
}
26
14
Original file line number Diff line number Diff line change @@ -66,7 +66,9 @@ const config = {
66
66
configFile : './.eslintrc'
67
67
} ,
68
68
plugins : [
69
- new ExtractTextPlugin ( '[name].css' ) ,
69
+ new ExtractTextPlugin ( '[name].css' , {
70
+ ignoreOrder : true
71
+ } ) ,
70
72
new webpack . ProvidePlugin ( {
71
73
Promise : 'imports?this=>global!exports?global.Promise!es6-promise' ,
72
74
fetch : 'imports?this=>global!exports?global.fetch!whatwg-fetch'
You can’t perform that action at this time.
0 commit comments