Last active
October 26, 2017 15:54
-
-
Save dclarke-modus/81021538f4f0a2d8ff0e11a909e86c5c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
ERROR in /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass | |
Module build failed: | |
.oauth-manager-container { | |
^ | |
Invalid CSS after "...ger-container {": expected "}", was "{" | |
in /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass (line 4, column 27) | |
Error: | |
.oauth-manager-container { | |
^ | |
Invalid CSS after "...ger-container {": expected "}", was "{" | |
in /home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/sass/layout/_layout.sass (line 4, column 27) | |
at options.error (/home/vagrant/Projects/com_oauth_manager/media/com_oauth_manager/js/com_oauthmanager/node_modules/node-sass/lib/index.js:291:26) | |
@ ./app/component/App.js 5:0-47 | |
@ ./app/index.js | |
// MY SASS FILE | |
@import '../bourbon/bourbon'; | |
@import '../base/base'; | |
.oauth-manager-container { | |
@include grid-container; | |
} | |
// MY WEBPACK.CONFIG.JS | |
const ExtractTextPlugin = require("extract-text-webpack-plugin"); | |
module.exports = { | |
entry : __dirname + '/app/index.js', | |
module : { | |
loaders: [ | |
{ | |
test: /\.js$/, | |
exclude: /node_modules/, | |
loader: 'babel-loader' | |
}, | |
{ | |
test: /\.sass$/, | |
loader: "sass-loader" | |
} | |
] | |
}, | |
output: { | |
filename : 'bundled.js', | |
path : __dirname + '/build' | |
}, | |
watch: true, | |
watchOptions: { | |
aggregateTimeout: 300, | |
poll: 200 | |
}, | |
plugins: [ | |
new ExtractTextPlugin("styles.css") | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment